re-uploading work
This commit is contained in:
10
tests/generated_client/models/inquiry_status.py
Normal file
10
tests/generated_client/models/inquiry_status.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from enum import Enum
|
||||
|
||||
class InquiryStatus(str, Enum):
|
||||
CANCELLED = "Cancelled"
|
||||
PENDING = "Pending"
|
||||
RESPONDED = "Responded"
|
||||
TIMEOUT = "Timeout"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user