Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1023 Bytes

File metadata and controls

31 lines (22 loc) · 1023 Bytes

GetTokenResponse

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
token TokenFields [optional]

Example

from hyperstack.models.get_token_response import GetTokenResponse

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

# convert the object into a dict
get_token_response_dict = get_token_response_instance.to_dict()
# create an instance of GetTokenResponse from a dict
get_token_response_form_dict = get_token_response.from_dict(get_token_response_dict)

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