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.account_updated_single_value_attribute_changes_inner import AccountUpdatedSingleValueAttributeChangesInner

account_updated_single_value_attribute_changes_inner = AccountUpdatedSingleValueAttributeChangesInner(
name='displayName',
old_value=John Doe,
new_value=John A. Doe
)

[Back to top]