Skip to main content

PasswordChangeResponse

Properties

NameTypeDescriptionNotes
request_idstrThe password change request ID[optional]
stateEnum [ 'IN_PROGRESS', 'FINISHED', 'FAILED' ]Password change state[optional]
}

Example

from sailpoint.v3.models.password_change_response import PasswordChangeResponse

password_change_response = PasswordChangeResponse(
request_id='089899f13a8f4da7824996191587bab9',
state='IN_PROGRESS'
)

[Back to top]