Skip to main content

AccessRequestedStatusChange

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.v2024.models.access_requested_status_change import AccessRequestedStatusChange

access_requested_status_change = AccessRequestedStatusChange(
previous_status='enabled',
new_status='disabled'
)

[Back to top]