| 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] |
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]