Home > @tridion-sites/open-api-client > NumericalConditionOperator
Defines the operator used for comparison of numerical operands.
Members: * Equals
- Compares if a numerical operand is equal to the given condition value.
* GreaterThan
- Compares if a numerical operand is greater than the given condition value.
* LessThan
- Compares if a numerical operand is less than the given condition value.
* NotEqual
- Compares if a numerical operand is not equal to the given condition value.
* UnknownByClient
- Special reserved value used to notify an older API version client about the presence of an enumeration member added in a later API version. Explicitly setting this value by a client is not allowed, but client code should check it and be able to handle such cases.
Signature:
export declare enum NumericalConditionOperator
Member | Value | Description |
---|---|---|
EQUALS | "Equals" |
|
GREATER_THAN | "GreaterThan" |
|
LESS_THAN | "LessThan" |
|
NOT_EQUAL | "NotEqual" |
|
UNKNOWN_BY_CLIENT | "UnknownByClient" |