You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indicates if all sessions were revoked successfully
Example
frombetter_auth.models.revoke_sessions_post200_responseimportRevokeSessionsPost200Response# TODO update the JSON string belowjson="{}"# create an instance of RevokeSessionsPost200Response from a JSON stringrevoke_sessions_post200_response_instance=RevokeSessionsPost200Response.from_json(json)
# print the JSON string representation of the objectprint(RevokeSessionsPost200Response.to_json())
# convert the object into a dictrevoke_sessions_post200_response_dict=revoke_sessions_post200_response_instance.to_dict()
# create an instance of RevokeSessionsPost200Response from a dictrevoke_sessions_post200_response_from_dict=RevokeSessionsPost200Response.from_dict(revoke_sessions_post200_response_dict)