Interface IGetFeedItemOpts

interface IGetFeedItemOpts {
    continuation?: string;
    exclude?: string;
    sMax?: number;
    sMin?: number;
    num?: number;
    sort?: "asc" | "desc";
}

Properties

continuation?: string

Continuation key from a previous request, used to fetch the next batch. (param=c)

exclude?: string

Exclude a streamId. (param=xt)

sMax?: number

Exclude items newer than this timestamp (seconds). (param=nt)

sMin?: number

Exclude items older than this timestamp (seconds). (param=ot)

num?: number

Number of items per request. Default: 50 (param=n)

sort?: "asc" | "desc"

Date sort order. Default: desc (param=r)