matchType property

String? matchType
getter/setter pair

The match type for this filter. Possible string values are:

  • "MATCH_TYPE_UNSPECIFIED" : Unspecified
  • "EXACT" : Exact match of the string value.
  • "BEGINS_WITH" : Begins with the string value.
  • "ENDS_WITH" : Ends with the string value.
  • "CONTAINS" : Contains the string value.
  • "FULL_REGEXP" : Full regular expression match with the string value.
  • "PARTIAL_REGEXP" : Partial regular expression match with the string value.

Implementation

core.String? matchType;