Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 948 Bytes

File metadata and controls

29 lines (20 loc) · 948 Bytes

SignOut200Response

Properties

Name Type Description Notes
success bool [optional]

Example

from better_auth.models.sign_out200_response import SignOut200Response

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

# convert the object into a dict
sign_out200_response_dict = sign_out200_response_instance.to_dict()
# create an instance of SignOut200Response from a dict
sign_out200_response_from_dict = SignOut200Response.from_dict(sign_out200_response_dict)

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