FilterBinaryOperator
Enum Definition
from enum import Enum
class FilterBinaryOperator(Enum):
"""Represents the different binary operators used in filtering procedures."""
AND = 0
OR = 1
EQUALS = 2
NOT_EQUALS = 3
IN = 4
HAS = 5
LESS_THAN = 6
GREATER_THAN = 7
LESS_THAN_OR_EQUAL = 8
GREATER_THAN_OR_EQUAL = 9Enum Members
Member
Value
Description
Last updated
Was this helpful?
