Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/PasswordChangeResponse.md
2025-02-20 12:59:19 -05:00

989 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
password-change-response PasswordChangeResponse PasswordChangeResponse PasswordChangeResponse pythonsdk
python
Python
sdk
PasswordChangeResponse
PasswordChangeResponse
/tools/sdk/python/v3/models/password-change-response
SDK
Software Development Kit
PasswordChangeResponse
PasswordChangeResponse

PasswordChangeResponse

Properties

Name Type Description Notes
request_id str The password change request ID [optional]
state Enum [ '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]