--- id: v2025-account-attributes-changed-account title: AccountAttributesChangedAccount pagination_label: AccountAttributesChangedAccount sidebar_label: AccountAttributesChangedAccount sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'AccountAttributesChangedAccount', 'V2025AccountAttributesChangedAccount'] slug: /tools/sdk/python/v2025/models/account-attributes-changed-account tags: ['SDK', 'Software Development Kit', 'AccountAttributesChangedAccount', 'V2025AccountAttributesChangedAccount'] --- # AccountAttributesChangedAccount Details of the account where the attributes changed. ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | SailPoint generated unique identifier. | [required] **uuid** | **str** | The source's unique identifier for the account. UUID is generated by the source system. | [required] **name** | **str** | Name of the account. | [required] **native_identity** | **str** | Unique ID of the account on the source. | [required] **type** | **Enum** [ 'ACCOUNT' ] | The type of the account | [required] } ## Example ```python from sailpoint.v2025.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]](#)