Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 772 Bytes

File metadata and controls

29 lines (20 loc) · 772 Bytes

Logout

Properties

Name Type Description Notes
refresh_token str

Example

from hyperstack.models.logout import Logout

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

# convert the object into a dict
logout_dict = logout_instance.to_dict()
# create an instance of Logout from a dict
logout_form_dict = logout.from_dict(logout_dict)

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