operator property

String? operator
getter/setter pair

Operator used to compare the field or infoType to the value.

Required. Possible string values are:

  • "RELATIONAL_OPERATOR_UNSPECIFIED" : Unused
  • "EQUAL_TO" : Equal. Attempts to match even with incompatible types.
  • "NOT_EQUAL_TO" : Not equal to. Attempts to match even with incompatible types.
  • "GREATER_THAN" : Greater than.
  • "LESS_THAN" : Less than.
  • "GREATER_THAN_OR_EQUALS" : Greater than or equals.
  • "LESS_THAN_OR_EQUALS" : Less than or equals.
  • "EXISTS" : Exists

Implementation

core.String? operator;