Skip to main content

AccountAttributesChangedChangesInner

Properties

NameTypeDescriptionNotes
attributestrThe name of the attribute.[required]
old_valueAccountAttributesChangedChangesInnerOldValue[required]
new_valueAccountAttributesChangedChangesInnerNewValue[required]
}

Example

from sailpoint.v2024.models.account_attributes_changed_changes_inner import AccountAttributesChangedChangesInner

account_attributes_changed_changes_inner = AccountAttributesChangedChangesInner(
attribute='sn',
old_value=doe,
new_value=ryans
)

[Back to top]