Skip to main content

IdentityAttributesChangedIdentity

Identity whose attributes changed.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of identity whose attributes changed.[required]
idstrID of identity whose attributes changed.[required]
namestrName of identity whose attributes changed.[required]
}

Example

from sailpoint.beta.models.identity_attributes_changed_identity import IdentityAttributesChangedIdentity

identity_attributes_changed_identity = IdentityAttributesChangedIdentity(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]