SetBlackboxPatternsRequest

@Serializable
data class SetBlackboxPatternsRequest(val patterns: List<String>, val skipAnonymous: Boolean? = null)

Request object containing input parameters for the DebuggerDomain.setBlackboxPatterns command.

Constructors

Link copied to clipboard
constructor(patterns: List<String>, skipAnonymous: Boolean? = null)

Types

Link copied to clipboard
class Builder(val patterns: List<String>)

A builder for SetBlackboxPatternsRequest, which allows setting the optional parameters of the DebuggerDomain.setBlackboxPatterns command via a lambda.

Properties

Link copied to clipboard

Array of regexps that will be used to check script url for blackbox state.

Link copied to clipboard
val skipAnonymous: Boolean? = null

If true, also ignore scripts with no source url.