prefixMatch property

  1. @TagNumber.new(2)
String get prefixMatch

The HTTP request path value must begin with specified prefix_match. prefix_match must begin with a /.

Only one of full_path_match, prefix_match, or regex_match should be used.

Implementation

@$pb.TagNumber(2)
$core.String get prefixMatch => $_getSZ(1);
  1. @TagNumber.new(2)
set prefixMatch (String v)

Implementation

@$pb.TagNumber(2)
set prefixMatch($core.String v) {
  $_setString(1, v);
}