mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
Update python SDK docs: 16525292132
This commit is contained in:
@@ -16,10 +16,10 @@ tags: ['SDK', 'Software Development Kit', 'AttributesChanged', 'V2025AttributesC
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**changes** | [**[]AttributeChange**](attribute-change) | | [optional]
|
||||
**attribute_changes** | [**[]AttributeChange**](attribute-change) | | [required]
|
||||
**event_type** | **str** | the event type | [optional]
|
||||
**identity_id** | **str** | the identity id | [optional]
|
||||
**dt** | **str** | the date of event | [optional]
|
||||
**date_time** | **str** | the date of event | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
@@ -28,12 +28,15 @@ Name | Type | Description | Notes
|
||||
from sailpoint.v2025.models.attributes_changed import AttributesChanged
|
||||
|
||||
attributes_changed = AttributesChanged(
|
||||
changes=[
|
||||
{name=firstname, previousValue=adam, newValue=zampa}
|
||||
attribute_changes=[
|
||||
sailpoint.v2025.models.attribute_change.AttributeChange(
|
||||
name = 'firstname',
|
||||
previous_value = 'adam',
|
||||
new_value = 'zampa', )
|
||||
],
|
||||
event_type='',
|
||||
identity_id='',
|
||||
dt=''
|
||||
event_type='AttributesChanged',
|
||||
identity_id='8a80828f643d484f01643e14202e206f',
|
||||
date_time='2019-03-08T22:37:33.901Z'
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user