FilterUnaryOperatorEnum that defines unary operators for use with filter expressions.Enum Definition Pythonfrom enum import Enum class FilterUnaryOperator(Enum): """Represents the unary operators used in filtering operations.""" NOT = 0 Enum Members MemberValueDescriptionNOT0Logical NOT operator, negates a condition.Updated about 1 month ago What’s NextFilter ExpressionsFilterBinaryOperatorTable of Contents Enum Definition Enum Members