Interface BasePostsFeed<T>

Base interface for a feed containing post-entries in its mapped form from the API.

interface BasePostsFeed<T> {
    category: string[];
    subtitle: string;
    blogger$adultContent: boolean;
    id: string;
    updated: string;
    title: string;
    link: RawLink[];
    author: Author[];
    openSearch$totalResults: number;
    openSearch$startIndex: number;
    openSearch$itemsPerPage: number;
    entry: T[];
}

Type Parameters

Hierarchy (view full)

Properties

category: string[]

The categories with which the posts has been tagged.

subtitle: string

The subtitle or description of the feed.

Can contain HTML markup.

blogger$adultContent: boolean

A flag indicating whether the blog contains adult content.

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: T[]

The retrieved entries.