Maximo API Client - v0.9.01
    Preparing search index...

    Interface PaginationInfo

    Pagination information for OSLC queries

    interface PaginationInfo {
        totalCount: number;
        pageNum: number;
        pageSize: number;
        hasNextPage: boolean;
        hasPreviousPage: boolean;
        totalPages?: number;
        nextPageUrl?: string;
        previousPageUrl?: string;
    }
    Index

    Properties

    totalCount: number

    Total count of items matching the query

    pageNum: number

    Current page number (1-based)

    pageSize: number

    Page size

    hasNextPage: boolean

    Whether there is a next page of results

    hasPreviousPage: boolean

    Whether there is a previous page of results

    totalPages?: number

    Total number of pages

    nextPageUrl?: string

    URL for the next page

    previousPageUrl?: string

    URL for the previous page