comparisonOperator property

String? comparisonOperator
getter/setter pair

The comparison operator to apply.

Required. Possible string values are:

  • "COMPARISON_OPERATOR_UNSPECIFIED" : Unspecified comparison operator. This value should not be used.
  • "LESS" : Less than.
  • "LESS_OR_EQUAL" : Less than or equal to.
  • "EQUAL" : Equal to.
  • "NOT_EQUAL" : Not equal to.
  • "GREATER_OR_EQUAL" : Greater than or equal to.
  • "GREATER" : Greater than.

Implementation

core.String? comparisonOperator;