Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.25 KB

File metadata and controls

34 lines (25 loc) · 1.25 KB

ListResultsResponse

Response body for GET /results

Properties

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]

Example

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)

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