Post-entry that includes the full content of the post.

interface PostEntry {
    media$thumbnail: PostThumbnail;
    category: string[];
    thr$total?: number;
    id: string;
    published: string;
    updated: string;
    title: string;
    link: RawEntryLink[];
    author: Author[];
    content: string;
}

Hierarchy (view full)

Properties

media$thumbnail: PostThumbnail

The thumbnail image of the post.

category: string[]

The categories with which the post has been tagged.

thr$total?: number

The number of comments on the post.

Note: it will only be present if the blog configuration allows comments.

1.2

id: string

The id of the entry.

published: string

RFC 3339 date-time when the entry was published.

updated: string

RFC 3339 date-time when the entry was last updated.

title: string

The title of the entry.

link: RawEntryLink[]

The links of the entry.

author: Author[]

The authors who published or updated the entry.

content: string

The content of the entry. Can contain HTML markup.