SetBlockedURLsRequest

@Serializable
data class SetBlockedURLsRequest(val urlPatterns: List<BlockPattern>? = null, val urls: List<String>? = null)

Request object containing input parameters for the NetworkDomain.setBlockedURLs command.

Constructors

Link copied to clipboard
constructor(urlPatterns: List<BlockPattern>? = null, urls: List<String>? = null)

Types

Link copied to clipboard
class Builder

A builder for SetBlockedURLsRequest, which allows setting the optional parameters of the NetworkDomain.setBlockedURLs command via a lambda.

Properties

Link copied to clipboard

Patterns to match in the order in which they are given. These patterns also take precedence over any wildcard patterns defined in urls.

Link copied to clipboard

URL patterns to block. Wildcards ('*') are allowed.