Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 983 Bytes

File metadata and controls

30 lines (21 loc) · 983 Bytes

CreatorRarityDto

Properties

Name Type Description Notes
creator CreatorPartialDto
rarity Rarity

Example

from ttx.models.creator_rarity_dto import CreatorRarityDto

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

# convert the object into a dict
creator_rarity_dto_dict = creator_rarity_dto_instance.to_dict()
# create an instance of CreatorRarityDto from a dict
creator_rarity_dto_from_dict = CreatorRarityDto.from_dict(creator_rarity_dto_dict)

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