toloka.client.search_requests.AppProjectSearchRequest
| Source code
AppProjectSearchRequest( self, app_id: Optional[str] = None, parent_app_project_id: Optional[str] = None, status: Optional[AppProject.Status] = None, after_id: Optional[str] = None, scope: Optional[Scope] = None, requester_ids: Union[str, List[str], None] = 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 App projects.
Parameters | Type | Description |
---|---|---|
app_id | Optional[str] | Projects created using the solution with the specified ID. |
parent_app_project_id | Optional[str] | Projects cloned from the project with the specified ID. Projects can be cloned in the web version of Toloka. |
status | Optional[AppProject.Status] | App project status. Refer to the AppProject.Status page for more information on the available |
after_id | Optional[str] | The ID of a project used for cursor pagination. |
scope | Optional[Scope] | Values:
|
requester_ids | Optional[List[str]] | A list with requester IDs separated by a comma. Use the list with parameter |
id_gt | Optional[str] | Projects with IDs greater than the specified value. |
id_gte | Optional[str] | Projects with IDs greater than or equal to the specified value. |
id_lt | Optional[str] | Projects with IDs less than the specified value. |
id_lte | Optional[str] | Projects with IDs less than or equal to the specified value. |
name_gt | Optional[str] | Projects with a name lexicographically greater than the specified value. |
name_gte | Optional[str] | Projects with a name lexicographically greater than or equal to the specified value. |
name_lt | Optional[str] | Projects with a name lexicographically less than the specified value. |
name_lte | Optional[str] | Projects with a name lexicographically less than or equal to the specified value. |
created_gt | Optional[datetime] | Projects created after the specified date. |
created_gte | Optional[datetime] | Projects created after or on the specified date. |
created_lt | Optional[datetime] | Projects created before the specified date. |
created_lte | Optional[datetime] | Projects created before or on the specified date. |