Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions synapseclient/models/curation.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ class TaskState(str, Enum):
IN_PROGRESS = "IN_PROGRESS"
"""The assignee has actively started the task."""

EXECUTING = "EXECUTING"
"""An automated execution (async job) is currently running for this task."""

IN_REVIEW = "IN_REVIEW"
"""The automated execution completed successfully and the results are pending human review."""

COMPLETED = "COMPLETED"
"""The task has been completed and verified."""

Expand Down
Loading