Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

ChangeEmail200Response

Properties

Name Type Description Notes
user User [optional]
status bool Indicates if the request was successful
message str Status message of the email change process [optional]

Example

from better_auth.models.change_email200_response import ChangeEmail200Response

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

# convert the object into a dict
change_email200_response_dict = change_email200_response_instance.to_dict()
# create an instance of ChangeEmail200Response from a dict
change_email200_response_from_dict = ChangeEmail200Response.from_dict(change_email200_response_dict)

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