Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

ResetPasswordCallback200Response

Properties

Name Type Description Notes
token str [optional]

Example

from better_auth.models.reset_password_callback200_response import ResetPasswordCallback200Response

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

# convert the object into a dict
reset_password_callback200_response_dict = reset_password_callback200_response_instance.to_dict()
# create an instance of ResetPasswordCallback200Response from a dict
reset_password_callback200_response_from_dict = ResetPasswordCallback200Response.from_dict(reset_password_callback200_response_dict)

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