10 lines
199 B
Python
10 lines
199 B
Python
from enum import Enum
|
|
|
|
class EnforcementStatus(str, Enum):
|
|
CREATED = "Created"
|
|
DISABLED = "Disabled"
|
|
PROCESSED = "Processed"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|