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

    Interface ReconciliationPage

    A keyset page of settled ledger records that also carries a filtered total count.

    interface ReconciliationPage {
        items: Record<string, unknown>[];
        nextCursor: string | null;
        total?: number;
    }

    Hierarchy (View Summary)

    • Page
      • ReconciliationPage
    Index

    Properties

    items: Record<string, unknown>[]

    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).