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

1.3 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-identity-attributes-changed-identity IdentityAttributesChangedIdentity IdentityAttributesChangedIdentity IdentityAttributesChangedIdentity pythonsdk
python
Python
sdk
IdentityAttributesChangedIdentity
V2025IdentityAttributesChangedIdentity
/tools/sdk/python/v2025/models/identity-attributes-changed-identity
SDK
Software Development Kit
IdentityAttributesChangedIdentity
V2025IdentityAttributesChangedIdentity

IdentityAttributesChangedIdentity

Identity whose attributes changed.

Properties

Name Type Description Notes
type Enum [ 'IDENTITY' ] DTO type of identity whose attributes changed. [required]
id str ID of identity whose attributes changed. [required]
name str Display name of identity whose attributes changed. [required]
}

Example

from sailpoint.v2025.models.identity_attributes_changed_identity import IdentityAttributesChangedIdentity

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

[Back to top]