You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromrevengai.models.update_user_password_input_bodyimportUpdateUserPasswordInputBody# TODO update the JSON string belowjson="{}"# create an instance of UpdateUserPasswordInputBody from a JSON stringupdate_user_password_input_body_instance=UpdateUserPasswordInputBody.from_json(json)
# print the JSON string representation of the objectprint(UpdateUserPasswordInputBody.to_json())
# convert the object into a dictupdate_user_password_input_body_dict=update_user_password_input_body_instance.to_dict()
# create an instance of UpdateUserPasswordInputBody from a dictupdate_user_password_input_body_from_dict=UpdateUserPasswordInputBody.from_dict(update_user_password_input_body_dict)