9 lines
179 B
Python
9 lines
179 B
Python
from enum import Enum
|
|
|
|
|
|
class OrderStatus(str, Enum):
|
|
PENDING = 'pending'
|
|
REJECTED = 'rejected'
|
|
COMPLETED = 'completed'
|
|
CANCELLED = 'cancelled'
|
|
ERROR = 'error' |