| Name |
Type |
Description |
Notes |
| session_id |
str |
|
|
| callback_code |
str |
|
|
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]