Response body for GET /results
| Name | Type | Description | Notes |
|---|---|---|---|
| count | int | Number of results returned in this response | |
| has_more | bool | Whether there are more results available after this page | |
| limit | int | Limit used for this request | |
| offset | int | Pagination offset used for this request | |
| results | List[ResultInfo] |
from hotdata.models.list_results_response import ListResultsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListResultsResponse from a JSON string
list_results_response_instance = ListResultsResponse.from_json(json)
# print the JSON string representation of the object
print(ListResultsResponse.to_json())
# convert the object into a dict
list_results_response_dict = list_results_response_instance.to_dict()
# create an instance of ListResultsResponse from a dict
list_results_response_from_dict = ListResultsResponse.from_dict(list_results_response_dict)