Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
34 lines (26 loc) · 1.2 KB

File metadata and controls

34 lines (26 loc) · 1.2 KB

PasswordChangeRequest

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
request_id str [optional]
user_id str [optional]
user_name str [optional]
url str [optional]
created_at str [optional]

Example

from clientapi_atrocore.models.password_change_request import PasswordChangeRequest

# TODO update the JSON string below
json = "{}"
# create an instance of PasswordChangeRequest from a JSON string
password_change_request_instance = PasswordChangeRequest.from_json(json)
# print the JSON string representation of the object
print PasswordChangeRequest.to_json()

# convert the object into a dict
password_change_request_dict = password_change_request_instance.to_dict()
# create an instance of PasswordChangeRequest from a dict
password_change_request_form_dict = password_change_request.from_dict(password_change_request_dict)

[Back to Model list] [Back to API list] [Back to README]