Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 939 Bytes

File metadata and controls

31 lines (22 loc) · 939 Bytes

TokenFields

Properties

Name Type Description Notes
access_token str [optional]
id_token str [optional]
refresh_token str [optional]

Example

from hyperstack.models.token_fields import TokenFields

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

# convert the object into a dict
token_fields_dict = token_fields_instance.to_dict()
# create an instance of TokenFields from a dict
token_fields_from_dict = TokenFields.from_dict(token_fields_dict)

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