ResetPassword.md
926 Bytes
ResetPassword
Properties
Name | Type | Description | Notes |
---|---|---|---|
login_id | str | ||
otp | str | ||
new_password | str |
Example
from openapi_client.models.reset_password import ResetPassword
# TODO update the JSON string below
json = "{}"
# create an instance of ResetPassword from a JSON string
reset_password_instance = ResetPassword.from_json(json)
# print the JSON string representation of the object
print(ResetPassword.to_json())
# convert the object into a dict
reset_password_dict = reset_password_instance.to_dict()
# create an instance of ResetPassword from a dict
reset_password_from_dict = ResetPassword.from_dict(reset_password_dict)