MessageThreadSearchRequest
toloka.client.search_requests.MessageThreadSearchRequest
| Source code
MessageThreadSearchRequest(
self,
folder: Union[str, Folder, List[Union[str, Folder]], None] = None,
folder_ne: Union[str, Folder, List[Union[str, Folder]], None] = 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 message threads
Parameters Description
Parameters | Type | Description |
---|---|---|
folder |
Optional[List[Folder]] | Folders to search for the thread |
folder_ne |
Optional[List[Folder]] | Folders to not search for the thread |
id_lt |
Optional[str] | Threads with an ID less than the specified value. |
id_lte |
Optional[str] | Threads with an ID less than or equal to the specified value. |
id_gt |
Optional[str] | Threads with an ID greater than the specified value. |
id_gte |
Optional[str] | Threads with an ID greater than or equal to the specified value. |
created_lt |
Optional[datetime] | Threads created before the specified date. |
created_lte |
Optional[datetime] | Threads created before or on the specified date. |
created_gt |
Optional[datetime] | Threads created after the specified date. |
created_gte |
Optional[datetime] | Threads created after or on the specified date. |