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='',
previous_value='',
new_value=''
)

[Back to top]