File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
from enum import Enum
2
2
3
3
4
+
4
5
class BulkImportRequestState (Enum ):
5
6
""" State of the import job when importing annotations (RUNNING, FAILED, or FINISHED).
6
7
7
- This object is deprecated. Please use AnnotationImportState instead.
8
+ If you are not usinig MEA continue using BulkImportRequest.
9
+ AnnotationImports are in beta and will change soon.
10
+
11
+ .. list-table::
12
+ :widths: 15 150
13
+ :header-rows: 1
14
+
15
+ * - State
16
+ - Description
17
+ * - RUNNING
18
+ - Indicates that the import job is not done yet.
19
+ * - FAILED
20
+ - Indicates the import job failed. Check `BulkImportRequest.errors` for more information
21
+ * - FINISHED
22
+ - Indicates the import job is no longer running. Check `BulkImportRequest.statuses` for more information
8
23
"""
9
24
RUNNING = "RUNNING"
10
25
FAILED = "FAILED"
You can’t perform that action at this time.
0 commit comments