Interface ListTimelineParams

interface ListTimelineParams {
    limit?: null | number;
    local?: null | boolean;
    maxId?: null | string;
    minId?: null | string;
    onlyMedia?: null | boolean;
    remote?: null | boolean;
    sinceId?: null | string;
}

Hierarchy (view full)

Properties

limit?: null | number

Maximum number of results to return per page. Defaults to 40. NOTE: Pagination is done with the Link header from the response.

local?: null | boolean

Show only local statuses? Defaults to false.

maxId?: null | string

Return results older than this ID.

minId?: null | string

Get a list of items with ID greater than this value excluding this ID

onlyMedia?: null | boolean

Show only statuses with media attached? Defaults to false.

remote?: null | boolean

Remote only

sinceId?: null | string

Return results newer than this ID.