TaskSearchResult
toloka.client.search_results.TaskSearchResult
TaskSearchResult(
self,
*,
items: Optional[List[Task]] = None,
has_more: Optional[bool] = None
)
The list of found tasks and whether there is something else on the original request
It's better to use TolokaClient.get_tasks(), which already implements the correct handling of the search result.
Parameters Description
Parameters | Type | Description |
---|---|---|
items |
Optional[List[Task]] | List of found tasks |
has_more |
Optional[bool] | Whether the list is complete:
|