13 lines
255 B
Python
13 lines
255 B
Python
![]() |
from enum import Enum
|
||
|
|
||
|
|
||
|
class FileConversionStatus(str, Enum):
|
||
|
QUEUED = "Queued"
|
||
|
UPLOADED = "Uploaded"
|
||
|
IN_PROGRESS = "In Progress"
|
||
|
COMPLETED = "Completed"
|
||
|
FAILED = "Failed"
|
||
|
|
||
|
def __str__(self) -> str:
|
||
|
return str(self.value)
|