Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 871 Bytes

File metadata and controls

29 lines (20 loc) · 871 Bytes

LogoutPayload

Properties

Name Type Description Notes
refresh_token str

Example

from hyperstack.models.logout_payload import LogoutPayload

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

# convert the object into a dict
logout_payload_dict = logout_payload_instance.to_dict()
# create an instance of LogoutPayload from a dict
logout_payload_form_dict = logout_payload.from_dict(logout_payload_dict)

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