Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1005 Bytes

File metadata and controls

31 lines (22 loc) · 1005 Bytes

DiscordTokenDto

Properties

Name Type Description Notes
access_token str
link_token str
twitch_users List[TwitchUserDto] [readonly]

Example

from ttx.models.discord_token_dto import DiscordTokenDto

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

# convert the object into a dict
discord_token_dto_dict = discord_token_dto_instance.to_dict()
# create an instance of DiscordTokenDto from a dict
discord_token_dto_from_dict = DiscordTokenDto.from_dict(discord_token_dto_dict)

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