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

    Interface LedgerEntry

    One settled ledger entry (a row in the refund/conversion history).

    interface LedgerEntry {
        change: string;
        currency: string;
        recordId: string;
        ref?: string;
        ts: number;
        type: string;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown

      Additional fields passed through untyped.

    Index

    Properties

    change: string

    Signed balance change as a decimal string (negative = debit).

    currency: string

    Asset code, e.g. "USDT".

    recordId: string

    Stable record id.

    ref?: string

    Reference back to the originating order/operation.

    ts: number

    Settlement time, unix ms.

    type: string

    Ledger entry type, e.g. "REFUND" / "CONVERT".