Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccountAttributesChangedIdentity.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-account-attributes-changed-identity AccountAttributesChangedIdentity AccountAttributesChangedIdentity AccountAttributesChangedIdentity pythonsdk
python
Python
sdk
AccountAttributesChangedIdentity
V2025AccountAttributesChangedIdentity
/tools/sdk/python/v2025/models/account-attributes-changed-identity
SDK
Software Development Kit
AccountAttributesChangedIdentity
V2025AccountAttributesChangedIdentity

AccountAttributesChangedIdentity

The identity whose account attributes were updated.

Properties

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

Example

from sailpoint.v2025.models.account_attributes_changed_identity import AccountAttributesChangedIdentity

account_attributes_changed_identity = AccountAttributesChangedIdentity(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]