Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 836 Bytes

File metadata and controls

30 lines (21 loc) · 836 Bytes

GetToken

Properties

Name Type Description Notes
session_id str
callback_code str

Example

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)

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