| Name | Type | Description | Notes |
|---|---|---|---|
| hits | List[HaloDocument] | [optional] | |
| keyword | str | [optional] | |
| limit | int | [optional] | |
| processing_time_millis | int | [optional] | |
| total | int | [optional] |
from halo_client.models.search_result import SearchResult
# TODO update the JSON string below
json = "{}"
# create an instance of SearchResult from a JSON string
search_result_instance = SearchResult.from_json(json)
# print the JSON string representation of the object
print(SearchResult.to_json())
# convert the object into a dict
search_result_dict = search_result_instance.to_dict()
# create an instance of SearchResult from a dict
search_result_from_dict = SearchResult.from_dict(search_result_dict)