Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 906 Bytes

File metadata and controls

30 lines (21 loc) · 906 Bytes

TokenRefresh

Properties

Name Type Description Notes
refresh str
access str [optional] [readonly]

Example

from workplace_client.models.token_refresh import TokenRefresh

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

# convert the object into a dict
token_refresh_dict = token_refresh_instance.to_dict()
# create an instance of TokenRefresh from a dict
token_refresh_from_dict = TokenRefresh.from_dict(token_refresh_dict)

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