We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78e052b commit c1f8af0Copy full SHA for c1f8af0
labelbox/schema/export_filters.py
@@ -11,4 +11,18 @@
11
12
class ProjectExportFilters(TypedDict):
13
label_created_at: Optional[Tuple[str, str]]
14
+ """ Date range for labels created at
15
+ Formatted "YYYY-MM-DD" or "YYYY-MM-DD hh:mm:ss"
16
+ Examples:
17
+ >>> ["2000-01-01 00:00:00", "2050-01-01 00:00:00"]
18
+ >>> [None, "2050-01-01 00:00:00"]
19
+ >>> ["2000-01-01 00:00:00", None]
20
+ """
21
last_activity_at: Optional[Tuple[str, str]]
22
+ """ Date range for last activity at
23
24
25
26
27
28
0 commit comments