toloka.client.search_requests.AppSearchRequest
| Source code
AppSearchRequest( self, after_id: Optional[str] = None, lang: Optional[str] = None, id_lt: Optional[str] = None, id_lte: Optional[str] = None, id_gt: Optional[str] = None, id_gte: Optional[str] = None)
Parameters for searching App solutions.
Parameters | Type | Description |
---|---|---|
after_id | Optional[str] | The ID of a solution used for cursor pagination. |
lang | Optional[str] | ISO 639 language code. |
id_gt | Optional[str] | Solutions with IDs greater than the specified value. |
id_gte | Optional[str] | Solutions with IDs greater than or equal to the specified value. |
id_lt | Optional[str] | Solutions with IDs less than the specified value. |
id_lte | Optional[str] | Solutions with IDs less than or equal to the specified value. |
name_gt | - | Solutions with names lexicographically greater than the specified value. |
name_gte | - | Solutions with names lexicographically greater than or equal to the specified value. |
name_lt | - | Solutions with names lexicographically less than the specified value. |
name_lte | - | Solutions with names lexicographically less than or equal to the specified value. |