--- 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]](#)