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.identity_history.models.attributechange import Attributechange

attributechange = Attributechange(
name='firstname',
previous_value='adam',
new_value='zampa'
)

[Back to top]