toloka.client.search_requests.ProjectSearchRequest
| Source code
ProjectSearchRequest( self, status: Optional[Project.ProjectStatus] = None, id_lt: Optional[str] = None, id_lte: Optional[str] = None, id_gt: Optional[str] = None, id_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 projects.
Parameters | Type | Description |
---|---|---|
status | Optional[Project.ProjectStatus] | Project status. Refer to the ProjectStatus page for more information on the available |
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. |
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. |
created_lt | Optional[datetime] | Projects created before the specified date. |
created_lte | Optional[datetime] | Projects created before or on the specified date. |
created_gt | Optional[datetime] | Projects created after the specified date. |
created_gte | Optional[datetime] | Projects created after or on the specified date. |