Skip to main content

AttributesChanged

Properties

NameTypeDescriptionNotes
changes[]AttributeChange[optional]
event_typestrthe event type[optional]
identity_idstrthe identity id[optional]
dtstrthe date of event[optional]
}

Example

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]