| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[CollectionSearchResult] | The results of the search |
from revengai.models.collection_search_response import CollectionSearchResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CollectionSearchResponse from a JSON string
collection_search_response_instance = CollectionSearchResponse.from_json(json)
# print the JSON string representation of the object
print(CollectionSearchResponse.to_json())
# convert the object into a dict
collection_search_response_dict = collection_search_response_instance.to_dict()
# create an instance of CollectionSearchResponse from a dict
collection_search_response_from_dict = CollectionSearchResponse.from_dict(collection_search_response_dict)