13 lines
248 B
Python
13 lines
248 B
Python
from enum import Enum
|
|
|
|
|
|
class APICallStatus(str, Enum):
|
|
QUEUED = 'Queued'
|
|
UPLOADED = 'Uploaded'
|
|
IN_PROGRESS = 'In Progress'
|
|
COMPLETED = 'Completed'
|
|
FAILED = 'Failed'
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|