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

    Type Alias LedgerQuery

    Filters + pagination for the settled ledger history endpoints.

    type LedgerQuery = {
        before?: string;
        currency?: string;
        from?: number;
        limit?: number;
        order?: "asc" | "desc";
        to?: number;
    }
    Index

    Properties

    before?: string

    Cursor from the previous page's nextCursor.

    currency?: string

    Restrict to a single asset code, e.g. "USDT".

    from?: number

    Inclusive start of the window, epoch milliseconds.

    limit?: number

    Max items per page.

    order?: "asc" | "desc"

    Sort direction, "asc" | "desc".

    to?: number

    Inclusive end of the window, epoch milliseconds.