| Name | Type | Description | Notes |
|---|---|---|---|
| session_id | str | ||
| callback_code | str |
from hyperstack.models.get_token import GetToken
# TODO update the JSON string below
json = "{}"
# create an instance of GetToken from a JSON string
get_token_instance = GetToken.from_json(json)
# print the JSON string representation of the object
print GetToken.to_json()
# convert the object into a dict
get_token_dict = get_token_instance.to_dict()
# create an instance of GetToken from a dict
get_token_form_dict = get_token.from_dict(get_token_dict)