LogicalOperatorΒΆ

class inmydata.StructuredData.LogicalOperator(value)

Bases: Enum

Enum representing a logical operator for combining conditions in AIDataFilter.

And

Represents the logical AND operator.

Or

Represents the logical OR operator.

AndNot

Represents the logical AND NOT operator.

And = 0
AndNot = 2
Or = 1