Member Junction
    Preparing search index...

    Pagination state extracted from a vendor response

    interface PaginationState {
        HasMore: boolean;
        NextCursor?: string;
        NextOffset?: number;
        NextPage?: number;
        TotalRecords?: number;
    }
    Index

    Properties

    HasMore: boolean

    Whether more pages remain

    NextCursor?: string

    Opaque cursor for cursor-based pagination

    NextOffset?: number

    Numeric offset for offset-based pagination

    NextPage?: number

    Page number for page-based pagination

    TotalRecords?: number

    Total records reported by the API, if available