Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 935 Bytes

File metadata and controls

30 lines (21 loc) · 935 Bytes

GetTokenPayload

Properties

Name Type Description Notes
session_id str
callback_code str

Example

from hyperstack.models.get_token_payload import GetTokenPayload

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

# convert the object into a dict
get_token_payload_dict = get_token_payload_instance.to_dict()
# create an instance of GetTokenPayload from a dict
get_token_payload_form_dict = get_token_payload.from_dict(get_token_payload_dict)

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