123456789101112131415161718 |
- from typing import Literal, Optional
- from pydantic import BaseModel
- class Condition(BaseModel):
- """
- Condition entity
- """
- variable_selector: list[str]
- comparison_operator: Literal[
- # for string or array
- "contains", "not contains", "start with", "end with", "is", "is not", "empty", "not empty",
- # for number
- "=", "≠", ">", "<", "≥", "≤", "null", "not null"
- ]
- value: Optional[str] = None
|