RequestChildNodesParameter

@Serializable
data class RequestChildNodesParameter(val nodeId: Int, val depth: Int? = null, val pierce: Boolean? = null)

Constructors

Link copied to clipboard
constructor(nodeId: Int, depth: Int? = null, pierce: Boolean? = null)

Properties

Link copied to clipboard
val depth: Int? = null

The maximum depth at which children should be retrieved, defaults to 1. Use -1 for the entire subtree or provide an integer larger than 0.

Link copied to clipboard
val nodeId: Int

Id of the node to get children for.

Link copied to clipboard
val pierce: Boolean? = null

Whether or not iframes and shadow roots should be traversed when returning the sub-tree (default is false).