Skip to main content

AttributeChange

Properties

NameTypeDescriptionNotes
namestrthe attribute name[optional]
previous_valuestrthe old value of attribute[optional]
new_valuestrthe new value of attribute[optional]
}

Example

from sailpoint.v2024.models.attribute_change import AttributeChange

attribute_change = AttributeChange(
name='firstname',
previous_value='adam',
new_value='zampa'
)

[Back to top]