Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

ChangeOwnPasswordRequest

Properties

Name Type Description Notes
old_password str Old password.
password str New password.

Example

from halo_client.models.change_own_password_request import ChangeOwnPasswordRequest

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

# convert the object into a dict
change_own_password_request_dict = change_own_password_request_instance.to_dict()
# create an instance of ChangeOwnPasswordRequest from a dict
change_own_password_request_from_dict = ChangeOwnPasswordRequest.from_dict(change_own_password_request_dict)

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