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 match conditions

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

Match variable to compare against.

Link copied to clipboard

Describes if the result of this condition should be negated.

Link copied to clipboard

Describes operator to be matched

Link copied to clipboard
val selector: String? = null

Selector can used to match a specific key for QueryString, Cookies, RequestHeader or PostArgs.

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

List of transforms.