ProjectSearchRequest
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 Description
Parameters | Type | Description |
---|---|---|
status |
Optional[Project.ProjectStatus] | Status of the project, from Project.ProjectStatus:
|
id_lt |
Optional[str] | Projects with an ID less than the specified value. |
id_lte |
Optional[str] | Projects with an ID less than or equal to the specified value. |
id_gt |
Optional[str] | Projects with an ID greater than the specified value. |
id_gte |
Optional[str] | Projects with an ID 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. |