| Name | Type | Description | Notes |
|---|---|---|---|
| refresh_token | str |
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)