12 lines
259 B
Python
12 lines
259 B
Python
from enum import Enum
|
|
|
|
|
|
class ModerationStatusEnum(str, Enum):
|
|
CHANGE_REQUESTED = "change_requested"
|
|
NOT_REQUESTED = "not_requested"
|
|
REQUESTED = "requested"
|
|
VALIDATED = "validated"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|