MatchConditionResponse

data class MatchConditionResponse(val matchValue: List<String>, val matchVariable: String, val negateCondition: Boolean? = null, val operator: String, val selector: String? = null, val transforms: List<String>? = null)

Define a match condition.

Constructors

Link copied to clipboard
constructor(matchValue: List<String>, matchVariable: String, negateCondition: Boolean? = null, operator: String, selector: String? = null, transforms: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

List of possible match values.

Link copied to clipboard

Request variable to compare with.

Link copied to clipboard

Describes if the result of this condition should be negated.

Link copied to clipboard

Comparison type to use for matching with the variable value.

Link copied to clipboard
val selector: String? = null

Match against a specific key from the QueryString, PostArgs, RequestHeader or Cookies variables. Default is null.

Link copied to clipboard
val transforms: List<String>? = null

List of transforms.