interface Pagination {
    cursor_range: [string, string];
    ending_before: null | string;
    limit: number;
    next_uri: string;
    order: "asc" | "desc";
    previous_uri: string;
    starting_after: null | string;
    total: number;
    yielded: number;
}

Properties

cursor_range: [string, string]
ending_before: null | string
limit: number
next_uri: string
order: "asc" | "desc"
previous_uri: string
starting_after: null | string
total: number
yielded: number