2021-12-06 12:43:34 -08:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
class FileConversionStatus(str, Enum):
|
2022-04-06 20:48:04 -07:00
|
|
|
QUEUED = 'Queued'
|
|
|
|
UPLOADED = 'Uploaded'
|
|
|
|
IN_PROGRESS = 'In Progress'
|
|
|
|
COMPLETED = 'Completed'
|
|
|
|
FAILED = 'Failed'
|
2021-12-06 12:43:34 -08:00
|
|
|
|
2022-04-06 20:48:04 -07:00
|
|
|
def __str__(self) -> str:
|
|
|
|
return str(self.value)
|