Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

File metadata and controls

29 lines (20 loc) · 1 KB

ResetPassword200Response

Properties

Name Type Description Notes
status bool [optional]

Example

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]