Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

ResetPasswordReq.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

ResetPasswordReq

Minimal user information need to reset the password

Properties

Name Type Description Notes
id int User unique identifier. [optional] [default to -1]
email str [optional]
password str [optional]

Example

from ecotaxa_py_client.models.reset_password_req import ResetPasswordReq

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

# convert the object into a dict
reset_password_req_dict = reset_password_req_instance.to_dict()
# create an instance of ResetPasswordReq from a dict
reset_password_req_form_dict = reset_password_req.from_dict(reset_password_req_dict)

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