ChemPal Documentation - v1.6.0
    Preparing search index...

    Interface VWRSearchPagination

    Pagination metadata on a VWR search response.

    interface VWRSearchPagination {
        currentPage?: number;
        pageSize?: number;
        totalPages?: number;
        totalResults?: number;
    }
    Index

    Properties

    currentPage?: number

    Zero-based index of the current page.

    pageSize?: number

    Page size (the API caps this at 10 regardless of the requested value).

    totalPages?: number

    Total number of pages available for the query.

    totalResults?: number

    Total number of matching results across all pages.