Interface LinkPreviewTypeVideo

The link is a link to a video. Subtype of LinkPreviewType.

interface LinkPreviewTypeVideo {
    @type: "linkPreviewTypeVideo";
    cover: Photo;
    start_timestamp: number;
    video: Video;
}

Properties

@type: "linkPreviewTypeVideo"
cover: Photo

Cover of the video; may be null if none.

start_timestamp: number

Timestamp from which the video playing must start, in seconds.

video: Video

The video description.