Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 873 Bytes

File metadata and controls

29 lines (20 loc) · 873 Bytes

CollectionItem

Properties

Name Type Description Notes
item str

Example

from talon_one.models.collection_item import CollectionItem

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

# convert the object into a dict
collection_item_dict = collection_item_instance.to_dict()
# create an instance of CollectionItem from a dict
collection_item_from_dict = CollectionItem.from_dict(collection_item_dict)

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