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 40b914f commit 58be50fCopy full SHA for 58be50f
pydatalab/src/pydatalab/models/export_task.py
@@ -5,13 +5,17 @@
5
6
7
class ExportStatus(str, Enum):
8
+ """Status of an export task."""
9
+
10
PENDING = "pending"
11
PROCESSING = "processing"
12
READY = "ready"
13
ERROR = "error"
14
15
16
class ExportTask(BaseModel):
17
+ """Model for an export task."""
18
19
task_id: str = Field(..., description="Unique identifier for the export task")
20
collection_id: str | None = Field(None, description="ID of the collection being exported")
21
item_id: str | None = Field(None, description="ID of the sample being exported")
0 commit comments