Skip to main content

AccountAttributesChangedAccount

Details of the account where the attributes changed.

Properties

NameTypeDescriptionNotes
idstrSailPoint generated unique identifier.[required]
uuidstrThe source's unique identifier for the account. UUID is generated by the source system.[required]
namestrName of the account.[required]
native_identitystrUnique ID of the account on the source.[required]
typeEnum [ 'ACCOUNT' ]The type of the account[required]
}

Example

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