Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 886 Bytes

File metadata and controls

30 lines (21 loc) · 886 Bytes

RefreshToken

Properties

Name Type Description Notes
id_token str
refresh_token str

Example

from hyperstack.models.refresh_token import RefreshToken

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

# convert the object into a dict
refresh_token_dict = refresh_token_instance.to_dict()
# create an instance of RefreshToken from a dict
refresh_token_form_dict = refresh_token.from_dict(refresh_token_dict)

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