interface RequestFeedParams {
    max-results: string | number;
    start-index: string | number;
    published-min: string;
    published-max: string;
    updated-min: string;
    updated-max: string;
    orderby: OrderBy;
    q: string;
    alt: Alt;
}

Properties

max-results: string | number

The maximum number of results to be retrieved.

start-index: string | number

The 1-based index of the first result to be retrieved.

published-min: string

The inclusive min bound on the entry publication date.

published-max: string

The exclusive max bound on the entry publication date.

updated-min: string

The inclusive min bound on the entry update date.

updated-max: string

The exclusive min bound on the entry update date.

orderby: OrderBy

The sort order applied to results.

q: string

The full-text query string.

alt: Alt

The alternative representation type.