Interface DefaultPaginationParams

interface DefaultPaginationParams {
    limit?: null | number;
    maxId?: null | string;
    minId?: null | string;
    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.

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

sinceId?: null | string

Return results newer than this ID.