FrameTree

@Serializable
data class FrameTree(val frame: Page.Frame, val childFrames: List<Page.FrameTree>? = null)

Information about the Frame hierarchy.

Constructors

Link copied to clipboard
constructor(frame: Page.Frame, childFrames: List<Page.FrameTree>? = null)

Properties

Link copied to clipboard

Child frames.

Link copied to clipboard

Frame information for this tree item.