Http Route Rule Match Query Parameter
data class HttpRouteRuleMatchQueryParameter(val exactMatch: String? = null, val presentMatch: Boolean? = null, val queryParameter: String? = null, val regexMatch: String? = null)
Properties
Link copied to clipboard
The value of the query parameter must exactly match the contents of exactMatch.
Link copied to clipboard
Specifies that the QueryParameterMatcher matches if request contains query parameter, irrespective of whether the parameter has a value or not.
Link copied to clipboard
The name of the query parameter to match.
Link copied to clipboard
The value of the query parameter must match the regular expression specified by regexMatch.For regular expression grammar, please see https://github.com/google/re2/wiki/Syntax