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

    Interface LedgerPage

    A page of ledger history that also carries a filtered total count.

    interface LedgerPage {
        items: LedgerEntry[];
        nextCursor: string | null;
        total?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    items: LedgerEntry[]

    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"
    
    total?: number

    True count for the filtered range (independent of the page).