ElementNode

data class ElementNode(val type: String, val attributes: Map<String, String> = emptyMap(), val children: List<JsonTree.TreeNode> = emptyList()) : JsonTree.TreeNode

Constructors

Link copied to clipboard
constructor(type: String, attributes: Map<String, String> = emptyMap(), children: List<JsonTree.TreeNode> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val type: String