Operator Enumeration

Defines the valid operators that can be applied to a key-value pair.

Definition

Namespace: GenerativeAI.Types
Assembly: GenerativeAI (in GenerativeAI.dll) Version: 2.0.2+aa51399cad6d90cc71158d589a6268608b3c1893
C#
public enum Operator

Members

OPERATOR_UNSPECIFIED0 The default value. This value is unused.
LESS1 Supported by numeric.
LESS_EQUAL2 Supported by numeric.
EQUAL3 Supported by numeric & string.
GREATER_EQUAL4 Supported by numeric.
GREATER5 Supported by numeric.
NOT_EQUAL6 Supported by numeric & string.
INCLUDES7 Supported by string only when CustomMetadata value type for the given key has a stringListValue.
EXCLUDES8 Supported by string only when CustomMetadata value type for the given key has a stringListValue.

See Also