Raw feed containing a collection of full page entries.

interface RawPagesFeed {
    subtitle: RawTextTitle;
    blogger$adultContent: RawText;
    id: RawText;
    updated: RawText;
    title: RawTextTitle;
    link: RawLink[];
    author: RawAuthor[];
    openSearch$totalResults: RawText;
    openSearch$startIndex: RawText;
    openSearch$itemsPerPage: RawText;
    entry: RawPageEntry[];
}

Hierarchy (view full)

Properties

subtitle: RawTextTitle

The subtitle or description of the feed. Can contain HTML markup.

blogger$adultContent: RawText

A flag indicating whether the blog contains adult content.

The blog id.

updated: RawText

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

The name of the feed. Can include HTML markup.

link: RawLink[]

The links of the blog.

author: RawAuthor[]

The author of the blog.

openSearch$totalResults: RawText

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: RawText

The 1-based index of the first retrieved entry.

openSearch$itemsPerPage: RawText

The maximum number of items that appear on one page.

Commonly is the max-results parameter.

entry: RawPageEntry[]

The retrieved entries.