Skip to main content

AccountupdatedSingleValueAttributeChangesInner

Properties

NameTypeDescriptionNotes
namestrThe name of the attribute that was changed.[required]
old_valueAccountupdatedSingleValueAttributeChangesInnerOldValue[required]
new_valueAccountupdatedSingleValueAttributeChangesInnerNewValue[required]
}

Example

from sailpoint.triggers.models.accountupdated_single_value_attribute_changes_inner import AccountupdatedSingleValueAttributeChangesInner

accountupdated_single_value_attribute_changes_inner = AccountupdatedSingleValueAttributeChangesInner(
name='displayName',
old_value=John Doe,
new_value=John A. Doe
)

[Back to top]