Files
attune/tests/generated_client/models/execution_status.py
2026-02-04 17:46:30 -06:00

17 lines
387 B
Python

from enum import Enum
class ExecutionStatus(str, Enum):
ABANDONED = "Abandoned"
CANCELING = "Canceling"
CANCELLED = "Cancelled"
COMPLETED = "Completed"
FAILED = "Failed"
REQUESTED = "Requested"
RUNNING = "Running"
SCHEDULED = "Scheduled"
SCHEDULING = "Scheduling"
TIMEOUT = "Timeout"
def __str__(self) -> str:
return str(self.value)