Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

UpdateUserPasswordInputBody

Properties

Name Type Description Notes
current_password str Current password (required when changing your own password; ignored for SUPERADMIN updates of other users) [optional]
new_password str New password (minimum 10 characters)

Example

from revengai.models.update_user_password_input_body import UpdateUserPasswordInputBody

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

# convert the object into a dict
update_user_password_input_body_dict = update_user_password_input_body_instance.to_dict()
# create an instance of UpdateUserPasswordInputBody from a dict
update_user_password_input_body_from_dict = UpdateUserPasswordInputBody.from_dict(update_user_password_input_body_dict)

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