starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2024-attributes-changed
title: AttributesChanged
pagination_label: AttributesChanged
sidebar_label: AttributesChanged
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AttributesChanged', 'V2024AttributesChanged']
slug: /tools/sdk/python/v2024/models/attributes-changed
tags: ['SDK', 'Software Development Kit', 'AttributesChanged', 'V2024AttributesChanged']
---
# AttributesChanged
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**changes** | [**[]AttributeChange**](attribute-change) | | [optional]
**event_type** | **str** | the event type | [optional]
**identity_id** | **str** | the identity id | [optional]
**dt** | **str** | the date of event | [optional]
}
## Example
```python
from sailpoint.v2024.models.attributes_changed import AttributesChanged
attributes_changed = AttributesChanged(
changes=[
{name=firstname, previousValue=adam, newValue=zampa}
],
event_type='',
identity_id='',
dt=''
)
```
[[Back to top]](#)