--- id: v2024-attributes-changed title: AttributesChanged pagination_label: AttributesChanged sidebar_label: AttributesChanged sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'AttributesChanged', 'V2024AttributesChanged'] slug: /tools/sdk/powershell/v2024/models/attributes-changed tags: ['SDK', 'Software Development Kit', 'AttributesChanged', 'V2024AttributesChanged'] --- # AttributesChanged ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Changes** | [**[]AttributeChange**](attribute-change) | | [optional] **EventType** | **String** | the event type | [optional] **IdentityId** | **String** | the identity id | [optional] **Dt** | **String** | the date of event | [optional] ## Examples - Prepare the resource ```powershell $AttributesChanged = Initialize-V2024AttributesChanged -Changes null ` -EventType null ` -IdentityId null ` -Dt null ``` - Convert the resource to JSON ```powershell $AttributesChanged | ConvertTo-JSON ``` [[Back to top]](#)