Skip to main content

AccountStatusChangedStatusChange

Properties

NameTypeDescriptionNotes
previous_statusEnum [ 'enabled', 'disabled', 'locked' ]the previous status of the account[optional]
new_statusEnum [ 'enabled', 'disabled', 'locked' ]the new status of the account[optional]
}

Example

from sailpoint.beta.models.account_status_changed_status_change import AccountStatusChangedStatusChange

account_status_changed_status_change = AccountStatusChangedStatusChange(
previous_status='enabled',
new_status='enabled'
)

[Back to top]