Skip to main content

AttributesChanged

Properties

NameTypeDescriptionNotes
attribute_changes[]AttributeChange[required]
event_typestrthe event type[optional]
identity_idstrthe identity id[optional]
date_timestrthe date of event[optional]
}

Example

from sailpoint.v2024.models.attributes_changed import AttributesChanged

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

[Back to top]