Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 914 Bytes

File metadata and controls

26 lines (19 loc) · 914 Bytes

PageInfo

Properties

Name Type Description Notes
prevPage string The link to the previous page for pagination. [optional] [default to undefined]
nextPage string The link to the next page for pagination. [optional] [default to undefined]
prevPageToken string The isolated pagination token for the previous page. [optional] [default to undefined]
nextPageToken string The isolated pagination token for the next page. [optional] [default to undefined]

Example

import { PageInfo } from 'bandwidth-sdk';

const instance: PageInfo = {
    prevPage,
    nextPage,
    prevPageToken,
    nextPageToken,
};

[Back to Model list] [Back to API list] [Back to README]