13
kittycad/models/invoice_status.py
Normal file
13
kittycad/models/invoice_status.py
Normal file
@ -0,0 +1,13 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class InvoiceStatus(str, Enum):
|
||||
DELETED = 'deleted'
|
||||
DRAFT = 'draft'
|
||||
OPEN = 'open'
|
||||
PAID = 'paid'
|
||||
UNCOLLECTIBLE = 'uncollectible'
|
||||
VOID = 'void'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user