| Name | Type | Description | Notes |
|---|---|---|---|
| id_token | str | ||
| refresh_token | str |
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)