GetRequestValidatorResult

data class GetRequestValidatorResult(val requestValidatorId: String? = null, val validateRequestBody: Boolean? = null, val validateRequestParameters: Boolean? = null)

Constructors

Link copied to clipboard
constructor(requestValidatorId: String? = null, validateRequestBody: Boolean? = null, validateRequestParameters: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The ID for the request validator. For example: abc123 .

Link copied to clipboard

A Boolean flag to indicate whether to validate a request body according to the configured Model schema.

Link copied to clipboard

A Boolean flag to indicate whether to validate request parameters (`true`) or not (`false`).