Interface PageBlockEmbeddedPost

An embedded post. Subtype of PageBlock.

interface PageBlockEmbeddedPost {
    @type: "pageBlockEmbeddedPost";
    author: string;
    author_photo: Photo;
    caption: PageBlockCaption;
    date: number;
    page_blocks: PageBlock[];
    url: string;
}

Properties

@type: "pageBlockEmbeddedPost"
author: string

Post author.

author_photo: Photo

Post author photo; may be null.

Post caption.

date: number

Point in time (Unix timestamp) when the post was created; 0 if unknown.

page_blocks: PageBlock[]

Post content.

url: string

URL of the embedded post.