Interface PageBlockVideo

A video. Subtype of PageBlock.

interface PageBlockVideo {
    @type: "pageBlockVideo";
    caption: PageBlockCaption;
    is_looped?: boolean;
    need_autoplay?: boolean;
    video: Video;
}

Properties

@type: "pageBlockVideo"

Video caption.

is_looped?: boolean

True, if the video must be looped.

need_autoplay?: boolean

True, if the video must be played automatically.

video: Video

Video file; may be null.