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 11from enum import Enum
22
33
4+
45class BulkImportRequestState (Enum ):
56 """ State of the import job when importing annotations (RUNNING, FAILED, or FINISHED).
67
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
823 """
924 RUNNING = "RUNNING"
1025 FAILED = "FAILED"
You can’t perform that action at this time.
0 commit comments