Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AccountAttributesChangedIdentity.md
2025-02-20 12:59:19 -05: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
beta-account-attributes-changed-identity AccountAttributesChangedIdentity AccountAttributesChangedIdentity AccountAttributesChangedIdentity pythonsdk
python
Python
sdk
AccountAttributesChangedIdentity
BetaAccountAttributesChangedIdentity
/tools/sdk/python/beta/models/account-attributes-changed-identity
SDK
Software Development Kit
AccountAttributesChangedIdentity
BetaAccountAttributesChangedIdentity

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.beta.models.account_attributes_changed_identity import AccountAttributesChangedIdentity

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

[Back to top]