Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccountInfoRef.md
2025-04-14 20:23:46 +00:00

1.2 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
v2025-account-info-ref AccountInfoRef AccountInfoRef AccountInfoRef pythonsdk
python
Python
sdk
AccountInfoRef
V2025AccountInfoRef
/tools/sdk/python/v2025/models/account-info-ref
SDK
Software Development Kit
AccountInfoRef
V2025AccountInfoRef

AccountInfoRef

Properties

Name Type Description Notes
uuid str The uuid for the account, available under the 'objectguid' attribute [optional]
native_identity str The 'distinguishedName' attribute for the account [optional]
type DtoType [optional]
id str The account id [optional]
name str The account display name [optional]
}

Example

from sailpoint.v2025.models.account_info_ref import AccountInfoRef

account_info_ref = AccountInfoRef(
uuid='{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
native_identity='CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local',
type='IDENTITY',
id='f19d168c27374fd1aff3b483573f997f',
name='UserAccount.761a2248b'
)

[Back to top]