op property

String? op
getter/setter pair

The match operator for the field. Possible string values are:

  • "CONTAINS" : The operator matches if the field value contains the specified value.
  • "ENDS_WITH" : The operator matches if the field value ends with the specified value.
  • "EQUALS" : The operator matches if the field value equals the specified value.
  • "EQUALS_ANY" : The operator matches if the field value is any value.
  • "STARTS_WITH" : The operator matches if the field value starts with the specified value.

Implementation

core.String? op;