Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 983 Bytes

RefreshTokenPayload.md

File metadata and controls

30 lines (21 loc) · 983 Bytes

RefreshTokenPayload

Properties

Name Type Description Notes
id_token str
refresh_token str

Example

from hyperstack.models.refresh_token_payload import RefreshTokenPayload

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

# convert the object into a dict
refresh_token_payload_dict = refresh_token_payload_instance.to_dict()
# create an instance of RefreshTokenPayload from a dict
refresh_token_payload_from_dict = RefreshTokenPayload.from_dict(refresh_token_payload_dict)

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