Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

ListCollectionResults

Properties

Name Type Description Notes
results List[CollectionListItem] Page containing the results of the collections search

Example

from revengai.models.list_collection_results import ListCollectionResults

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

# convert the object into a dict
list_collection_results_dict = list_collection_results_instance.to_dict()
# create an instance of ListCollectionResults from a dict
list_collection_results_from_dict = ListCollectionResults.from_dict(list_collection_results_dict)

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