FrameResourceTree

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

Information about the Frame hierarchy along with their cached resources.

Constructors

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

Properties

Link copied to clipboard

Child frames.

Link copied to clipboard

Frame information for this tree item.

Link copied to clipboard

Information about frame resources.