Feed containing a collection of full comment entries.

interface CommentsFeed {
    id: string;
    updated: string;
    title: string;
    link: RawLink[];
    author: Author[];
    openSearch$totalResults: number;
    openSearch$startIndex: number;
    openSearch$itemsPerPage: number;
    entry: CommentEntry[];
}

Hierarchy (view full)

Properties

id: string

The blog id.

updated: string

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

title: string

The name of the feed. Can include HTML markup.

link: RawLink[]

The links of the blog.

author: Author[]

The author of the blog.

openSearch$totalResults: number

The total number of entries.

In a request with a query (q parameter), this value is usually equals to the number of entries retrieved.

openSearch$startIndex: number

The 1-based index of the first retrieved entry.

openSearch$itemsPerPage: number

The maximum number of items that appear on one page.

Commonly is the max-results parameter.

entry: CommentEntry[]

The retrieved entries.