Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/AccountInfoDto.md
2025-02-20 12:59:19 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-account-info-dto AccountInfoDto AccountInfoDto AccountInfoDto pythonsdk
python
Python
sdk
AccountInfoDto
V2024AccountInfoDto
/tools/sdk/python/v2024/models/account-info-dto
SDK
Software Development Kit
AccountInfoDto
V2024AccountInfoDto

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

from sailpoint.v2024.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]