presentMatch property

  1. @TagNumber.new(4)
bool get presentMatch

Specifies that the QueryParameterMatcher matches if request contains query parameter, irrespective of whether the parameter has a value or not.

Only one of exact_match, regex_match, or present_match must be set.

Implementation

@$pb.TagNumber(4)
$core.bool get presentMatch => $_getBF(3);
  1. @TagNumber.new(4)
set presentMatch (bool v)

Implementation

@$pb.TagNumber(4)
set presentMatch($core.bool v) {
  $_setBool(3, v);
}