Request model for listing tasks. Filter tasks by status, type, or other criteria.
| Name | Type | Description | Notes |
|---|---|---|---|
| status | TaskStatusEnum | Filter by specific task status (PENDING, IN_PROGRESS, PROCESSING, COMPLETED, FAILED, CANCELED, etc.). | [optional] |
| task_type | TaskType | Filter by task type (e.g., API_BUCKETS_OBJECTS_CREATE, BATCH_CONFIRM, etc.) | [optional] |
| filters | LogicalOperatorInput | Advanced filters to apply. | [optional] |
| sort | SortOption | Sort options. | [optional] |
| search | str | Search term. | [optional] |
from mixpeek.models.list_tasks_request import ListTasksRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ListTasksRequest from a JSON string
list_tasks_request_instance = ListTasksRequest.from_json(json)
# print the JSON string representation of the object
print(ListTasksRequest.to_json())
# convert the object into a dict
list_tasks_request_dict = list_tasks_request_instance.to_dict()
# create an instance of ListTasksRequest from a dict
list_tasks_request_from_dict = ListTasksRequest.from_dict(list_tasks_request_dict)