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
Session Object ### Description The Session object is used to represent an access session. Some resources can be accessed temporarily via a time-bounded session. ### Usage Example Fetch from the LIST Sessions endpoint.
fromopal_security.models.sessionimportSession# TODO update the JSON string belowjson="{}"# create an instance of Session from a JSON stringsession_instance=Session.from_json(json)
# print the JSON string representation of the objectprint(Session.to_json())
# convert the object into a dictsession_dict=session_instance.to_dict()
# create an instance of Session from a dictsession_from_dict=Session.from_dict(session_dict)