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

RevokeSessionsPost200Response

Properties

Name Type Description Notes
status bool Indicates if all sessions were revoked successfully

Example

from better_auth.models.revoke_sessions_post200_response import RevokeSessionsPost200Response

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

# convert the object into a dict
revoke_sessions_post200_response_dict = revoke_sessions_post200_response_instance.to_dict()
# create an instance of RevokeSessionsPost200Response from a dict
revoke_sessions_post200_response_from_dict = RevokeSessionsPost200Response.from_dict(revoke_sessions_post200_response_dict)

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