Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.42 KB

File metadata and controls

32 lines (23 loc) · 1.42 KB

ListAdhocExecutionsRequest

Request to list ad-hoc retriever executions with filtering. Allows filtering by status, time range, and searching by query summary. Results are ordered by timestamp descending (most recent first).

Properties

Name Type Description Notes
status str Filter by execution status. Common values: 'completed', 'failed'. OPTIONAL - omit to see all statuses. [optional]
start_time object [optional]
end_time object [optional]

Example

from mixpeek.models.list_adhoc_executions_request import ListAdhocExecutionsRequest

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

# convert the object into a dict
list_adhoc_executions_request_dict = list_adhoc_executions_request_instance.to_dict()
# create an instance of ListAdhocExecutionsRequest from a dict
list_adhoc_executions_request_from_dict = ListAdhocExecutionsRequest.from_dict(list_adhoc_executions_request_dict)

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