Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

ListAdhocExecutionsResponse

Response from listing ad-hoc retriever executions.

Properties

Name Type Description Notes
results List[AdhocExecutionSummary] List of ad-hoc execution summaries. [optional]
total int Total number of ad-hoc executions matching filters. [optional] [default to 0]
pagination object

Example

from mixpeek.models.list_adhoc_executions_response import ListAdhocExecutionsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ListAdhocExecutionsResponse from a JSON string
list_adhoc_executions_response_instance = ListAdhocExecutionsResponse.from_json(json)
# print the JSON string representation of the object
print(ListAdhocExecutionsResponse.to_json())

# convert the object into a dict
list_adhoc_executions_response_dict = list_adhoc_executions_response_instance.to_dict()
# create an instance of ListAdhocExecutionsResponse from a dict
list_adhoc_executions_response_from_dict = ListAdhocExecutionsResponse.from_dict(list_adhoc_executions_response_dict)

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