Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.18 KB

File metadata and controls

29 lines (20 loc) · 1.18 KB

RevokeOtherSessionsPost200Response

Properties

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

Example

from better_auth.models.revoke_other_sessions_post200_response import RevokeOtherSessionsPost200Response

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

# convert the object into a dict
revoke_other_sessions_post200_response_dict = revoke_other_sessions_post200_response_instance.to_dict()
# create an instance of RevokeOtherSessionsPost200Response from a dict
revoke_other_sessions_post200_response_from_dict = RevokeOtherSessionsPost200Response.from_dict(revoke_other_sessions_post200_response_dict)

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