12
kittycad/models/api_call_status.py
Normal file
12
kittycad/models/api_call_status.py
Normal file
@ -0,0 +1,12 @@
|
||||
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)
|
Reference in New Issue
Block a user