MonoCloud Management SDK
    Preparing search index...

    Interface PaginationHeader

    The pagination header.

    PaginationHeader

    interface PaginationHeader {
        current_page: number;
        has_next: boolean;
        has_previous: boolean;
        page_size: number;
        total_count: number;
    }
    Index

    Properties

    current_page: number

    The current page number.

    PaginationHeader

    has_next: boolean

    Indicates whether a next page exists.

    PaginationHeader

    has_previous: boolean

    Indicates whether a previous page exists.

    PaginationHeader

    page_size: number

    Number of items returned per page.

    PaginationHeader

    total_count: number

    Total number of items available.

    PaginationHeader