FrontdoorRuleConditionsPostArgsCondition

data class FrontdoorRuleConditionsPostArgsCondition(val matchValues: List<String>? = null, val negateCondition: Boolean? = null, val operator: String, val postArgsName: String, val transforms: List<String>? = null)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

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

One or more string or integer values(e.g. "1") representing the value of the POST argument to match. If multiple values are specified, they're evaluated using OR logic.

Link copied to clipboard

If true operator becomes the opposite of its value. Possible values true or false. Defaults to false. Details can be found in the Condition Operator List below.

Link copied to clipboard

A Conditional operator. Possible values include Any, Equal, Contains, BeginsWith, EndsWith, LessThan, LessThanOrEqual, GreaterThan, GreaterThanOrEqual or RegEx. Details can be found in the Condition Operator List below.

Link copied to clipboard

A string value representing the name of the POST argument.

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

A Conditional operator. Possible values include Lowercase, RemoveNulls, Trim, Uppercase, UrlDecode or UrlEncode. Details can be found in the Condition Transform List below.