Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

UpdatePasswordInputBody

Properties

NameTypeDescriptionNotes
codestrPassword reset code received by email
passwordstrNew password (minimum 10 characters)

Example

fromrevengai.models.update_password_input_bodyimportUpdatePasswordInputBody# TODO update the JSON string belowjson="{}"# create an instance of UpdatePasswordInputBody from a JSON stringupdate_password_input_body_instance=UpdatePasswordInputBody.from_json(json)
# print the JSON string representation of the objectprint(UpdatePasswordInputBody.to_json())
# convert the object into a dictupdate_password_input_body_dict=update_password_input_body_instance.to_dict()
# create an instance of UpdatePasswordInputBody from a dictupdate_password_input_body_from_dict=UpdatePasswordInputBody.from_dict(update_password_input_body_dict)

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