Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

CollectionSearchResponse

Properties

NameTypeDescriptionNotes
resultsList[CollectionSearchResult]The results of the search

Example

fromrevengai.models.collection_search_responseimportCollectionSearchResponse# TODO update the JSON string belowjson="{}"# create an instance of CollectionSearchResponse from a JSON stringcollection_search_response_instance=CollectionSearchResponse.from_json(json)
# print the JSON string representation of the objectprint(CollectionSearchResponse.to_json())
# convert the object into a dictcollection_search_response_dict=collection_search_response_instance.to_dict()
# create an instance of CollectionSearchResponse from a dictcollection_search_response_from_dict=CollectionSearchResponse.from_dict(collection_search_response_dict)

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