| Name | Type | Description | Notes |
|---|---|---|---|
| hits | List[V1SearchHit] | [optional] | |
| nb_pages | int | [optional] |
from quantcdn.models.v1_search_items_response import V1SearchItemsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of V1SearchItemsResponse from a JSON string
v1_search_items_response_instance = V1SearchItemsResponse.from_json(json)
# print the JSON string representation of the object
print(V1SearchItemsResponse.to_json())
# convert the object into a dict
v1_search_items_response_dict = v1_search_items_response_instance.to_dict()
# create an instance of V1SearchItemsResponse from a dict
v1_search_items_response_from_dict = V1SearchItemsResponse.from_dict(v1_search_items_response_dict)