SetBlockedURLsParameter

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

Constructors

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

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
val urls: List<String>? = null

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