WebAclResponseInspectionBodyContains

data class WebAclResponseInspectionBodyContains(val failureStrings: List<String>, val successStrings: List<String>)

Response body contents that indicate success or failure of a login request

Constructors

Link copied to clipboard
constructor(failureStrings: List<String>, successStrings: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Strings in the body of the response that indicate a failed login or account creation attempt. To be counted as a failure, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings. JSON example: "FailureStrings": [ "Request failed" ]

Link copied to clipboard

Strings in the body of the response that indicate a successful login or account creation attempt. To be counted as a success, the string can be anywhere in the body and must be an exact match, including case. Each string must be unique among the success and failure strings. JSON examples: "SuccessStrings": [ "Login successful" ] and "SuccessStrings": [ "Account creation successful", "Welcome to our site!" ]