Interface PageBlockEmbedded

An embedded web page. Subtype of PageBlock.

interface PageBlockEmbedded {
    @type: "pageBlockEmbedded";
    allow_scrolling?: boolean;
    caption: PageBlockCaption;
    height: number;
    html: string;
    is_full_width?: boolean;
    poster_photo: Photo;
    url: string;
    width: number;
}

Properties

@type: "pageBlockEmbedded"
allow_scrolling?: boolean

True, if scrolling needs to be allowed.

Block caption.

height: number

Block height; 0 if unknown.

html: string

HTML-markup of the embedded page.

is_full_width?: boolean

True, if the block must be full width.

poster_photo: Photo

Poster photo, if available; may be null.

url: string

URL of the embedded page, if available.

width: number

Block width; 0 if unknown.