| Name |
Type |
Description |
Notes |
| status |
bool |
|
[optional] |
from better_auth.models.reset_password200_response import ResetPassword200Response
# TODO update the JSON string below
json = "{}"
# create an instance of ResetPassword200Response from a JSON string
reset_password200_response_instance = ResetPassword200Response.from_json(json)
# print the JSON string representation of the object
print(ResetPassword200Response.to_json())
# convert the object into a dict
reset_password200_response_dict = reset_password200_response_instance.to_dict()
# create an instance of ResetPassword200Response from a dict
reset_password200_response_from_dict = ResetPassword200Response.from_dict(reset_password200_response_dict)
[Back to Model list] [Back to API list] [Back to README]