toloka.client.search_requests.AppBatchSearchRequest
| Source code
AppBatchSearchRequest( self, after_id: Optional[str] = None, status: Optional[AppBatch.Status] = None, id_lt: Optional[str] = None, id_lte: Optional[str] = None, id_gt: Optional[str] = None, id_gte: Optional[str] = None, name_lt: Optional[str] = None, name_lte: Optional[str] = None, name_gt: Optional[str] = None, name_gte: Optional[str] = None, created_lt: Optional[datetime] = None, created_lte: Optional[datetime] = None, created_gt: Optional[datetime] = None, created_gte: Optional[datetime] = None)
Parameters for searching batches in an App project.
Parameters | Type | Description |
---|---|---|
after_id | Optional[str] | The ID of the batch used for cursor pagination. |
status | Optional[AppBatch.Status] | Refer to the AppBatch.Status page for more information on the available |
id_gt | Optional[str] | Batches with IDs greater than the specified value. |
id_gte | Optional[str] | Batches with IDs greater than or equal to the specified value. |
id_lt | Optional[str] | Batches with IDs less than the specified value. |
id_lte | Optional[str] | Batches with IDs less than or equal to the specified value. |
name_gt | Optional[str] | Batches with names lexicographically greater than the specified value. |
name_gte | Optional[str] | Batches with names lexicographically greater than or equal to the specified value. |
name_lt | Optional[str] | Batches with names lexicographically less than the specified value. |
name_lte | Optional[str] | Batches with names lexicographically less than or equal to the specified value. |
created_gt | Optional[datetime] | Batches created after the specified date. |
created_gte | Optional[datetime] | Batches created after or on the specified date. |
created_lt | Optional[datetime] | Batches created before the specified date. |
created_lte | Optional[datetime] | Batches created before or on the specified date. |