Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.27 KB

File metadata and controls

40 lines (31 loc) · 1.27 KB

CreatorPartialDto

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]

Example

from ttx.models.creator_partial_dto import CreatorPartialDto

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

# convert the object into a dict
creator_partial_dto_dict = creator_partial_dto_instance.to_dict()
# create an instance of CreatorPartialDto from a dict
creator_partial_dto_from_dict = CreatorPartialDto.from_dict(creator_partial_dto_dict)

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