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
frombetter_auth.models.admin_revoke_user_session_requestimportAdminRevokeUserSessionRequest# TODO update the JSON string belowjson="{}"# create an instance of AdminRevokeUserSessionRequest from a JSON stringadmin_revoke_user_session_request_instance=AdminRevokeUserSessionRequest.from_json(json)
# print the JSON string representation of the objectprint(AdminRevokeUserSessionRequest.to_json())
# convert the object into a dictadmin_revoke_user_session_request_dict=admin_revoke_user_session_request_instance.to_dict()
# create an instance of AdminRevokeUserSessionRequest from a dictadmin_revoke_user_session_request_from_dict=AdminRevokeUserSessionRequest.from_dict(admin_revoke_user_session_request_dict)