Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.32 KB

File metadata and controls

42 lines (33 loc) · 1.32 KB

CreatorDto

Properties

Name Type Description Notes
id int
created_at datetime
updated_at datetime
name str
slug str
twitch_id str
url str [readonly]
avatar_url str
ticker str
value int
stream_status StreamStatusDto
history List[VoteDto]
transactions List[CreatorTransactionDto]
shares List[CreatorShareDto]

Example

from ttx.models.creator_dto import CreatorDto

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

# convert the object into a dict
creator_dto_dict = creator_dto_instance.to_dict()
# create an instance of CreatorDto from a dict
creator_dto_from_dict = CreatorDto.from_dict(creator_dto_dict)

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