Pagination properties

Page

interface Page {
    previous_cursor: null | string;
    next_cursor: null | string;
}

Properties

previous_cursor: null | string

First item as an encoded string

Page

next_cursor: null | string

Last item as an encoded string

Page