Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccountAttributesChangedAccount.md
2025-04-01 09:23:12 -04:00

1.5 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-attributes-changed-account AccountAttributesChangedAccount AccountAttributesChangedAccount AccountAttributesChangedAccount pythonsdk
python
Python
sdk
AccountAttributesChangedAccount
V2025AccountAttributesChangedAccount
/tools/sdk/python/v2025/models/account-attributes-changed-account
SDK
Software Development Kit
AccountAttributesChangedAccount
V2025AccountAttributesChangedAccount

AccountAttributesChangedAccount

Details of the account where the attributes changed.

Properties

Name Type Description Notes
id str SailPoint generated unique identifier. [required]
uuid str The source's unique identifier for the account. UUID is generated by the source system. [required]
name str Name of the account. [required]
native_identity str Unique ID of the account on the source. [required]
type Enum [ 'ACCOUNT' ] The type of the account [required]
}

Example

from sailpoint.v2025.models.account_attributes_changed_account import AccountAttributesChangedAccount

account_attributes_changed_account = AccountAttributesChangedAccount(
id='52170a74-ca89-11ea-87d0-0242ac130003',
uuid='1cb1f07d-3e5a-4431-becd-234fa4306108',
name='john.doe',
native_identity='cn=john.doe,ou=users,dc=acme,dc=com',
type=ACCOUNT
)

[Back to top]