Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AttributesChanged.md
2025-07-25 19:23:51 +00: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-attributes-changed AttributesChanged AttributesChanged AttributesChanged pythonsdk
python
Python
sdk
AttributesChanged
BetaAttributesChanged
/tools/sdk/python/beta/models/attributes-changed
SDK
Software Development Kit
AttributesChanged
BetaAttributesChanged

AttributesChanged

Properties

Name Type Description Notes
attribute_changes []AttributeChange [required]
event_type str the event type [optional]
identity_id str the identity id [optional]
date_time str the date of event [optional]
}

Example

from sailpoint.beta.models.attributes_changed import AttributesChanged

attributes_changed = AttributesChanged(
attribute_changes=[
                    sailpoint.beta.models.attribute_change.Attribute Change(
                        name = 'firstname', 
                        previous_value = 'adam', 
                        new_value = 'zampa', )
                    ],
event_type='AttributesChanged',
identity_id='8a80828f643d484f01643e14202e206f',
date_time='2019-03-08T22:37:33.901Z'
)

[Back to top]