Interface PageBlockDetails

A collapsible block. Subtype of PageBlock.

interface PageBlockDetails {
    @type: "pageBlockDetails";
    header: RichText;
    is_open?: boolean;
    page_blocks: PageBlock[];
}

Properties

@type: "pageBlockDetails"
header: RichText

Always visible heading for the block.

is_open?: boolean

True, if the block is open by default.

page_blocks: PageBlock[]

Block contents.