starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-account-info-dto
title: AccountInfoDto
pagination_label: AccountInfoDto
sidebar_label: AccountInfoDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccountInfoDto', 'BetaAccountInfoDto']
slug: /tools/sdk/python/beta/models/account-info-dto
tags: ['SDK', 'Software Development Kit', 'AccountInfoDto', 'BetaAccountInfoDto']
---
# AccountInfoDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**native_identity** | **str** | The unique ID of the account generated by the source system | [optional]
**display_name** | **str** | Display name for this account | [optional]
**uuid** | **str** | UUID associated with this account | [optional]
}
## Example
```python
from sailpoint.beta.models.account_info_dto import AccountInfoDto
account_info_dto = AccountInfoDto(
native_identity='CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
display_name='Abby.Smith',
uuid='{ad9fc391-246d-40af-b248-b6556a2b7c01}'
)
```
[[Back to top]](#)