absolutepay (Node SDK) - v0.7.1
    Preparing search index...

    Interface Page<T>

    One page of results from a keyset-paginated list endpoint.

    interface Page<T = Record<string, unknown>> {
        items: T[];
        nextCursor: string | null;
    }

    Type Parameters

    • T = Record<string, unknown>

      The element type of Page.items.

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    items: T[]

    The items on this page, in the endpoint's default sort order.

    nextCursor: string | null

    Opaque keyset cursor for the NEXT page — a value the API RETURNS, not one you set. To fetch the next page pass it back as the PageQuery.before query option. null when this is the last page (no more results).

    "eyJpZCI6IjAxSlgwUTdBQiIsInRzIjoxNzE5NzkyMDAwMDAwfQ"