@ -1,12 +1,11 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class FileConversionStatus(str, Enum):
|
||||
QUEUED = 'Queued'
|
||||
UPLOADED = 'Uploaded'
|
||||
IN _PROGRESS = 'In Progress'
|
||||
COMPLETED = 'Completed'
|
||||
FAILED = 'Failed'
|
||||
QUEUED = 'Queued'
|
||||
UPLOADED = 'Uploaded'
|
||||
IN _PROGRESS = 'In Progress'
|
||||
COMPLETED = 'Completed'
|
||||
FAILED = 'Failed'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
|
Reference in New Issue
Block a user