DeprecatedPagination
Representation of a search results pagination DeprecatedPagination
export interface DeprecatedPagination {
'currentPage'?: number;
'pageSize'?: number;
'sort'?: string;
'totalPages'?: number;
'totalResults'?: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
currentPage | Optional | number | The current page number. The first page is number zero (0), the second page is number one (1), and so on {number} DeprecatedPagination |
pageSize | Optional | number | The number of results per page. A page may have less results if there are less than a full page of results, only on the last page in the results {number} DeprecatedPagination |
sort | Optional | string | The selected sort code {string} DeprecatedPagination |
totalPages | Optional | number | The total number of pages. This is the number of pages, each of pageSize, required to display the totalResults. {number} DeprecatedPagination |
totalResults | Optional | number | The total number of matched results across all pages {number} DeprecatedPagination |