Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 797 Bytes

File metadata and controls

29 lines (20 loc) · 797 Bytes

TokenDto

Properties

Name Type Description Notes
access_token str

Example

from ttx.models.token_dto import TokenDto

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

# convert the object into a dict
token_dto_dict = token_dto_instance.to_dict()
# create an instance of TokenDto from a dict
token_dto_from_dict = TokenDto.from_dict(token_dto_dict)

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