xrpl
    Preparing search index...

    Interface LedgerEntryJsonResponse<T>

    Response expected from a LedgerEntryRequest with binary: false or omitted.

    interface LedgerEntryJsonResponse<T = LedgerEntry.LedgerEntry> {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: LedgerEntryResponseResultBase & { node: T };
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    api_version?: number
    forwarded?: boolean
    id: string | number
    result: LedgerEntryResponseResultBase & { node: T }

    Type Declaration

    • node: T

      Object containing the data of this ledger object, according to the ledger format.

    status?: string
    type: string
    warning?: "load"
    warnings?: ResponseWarning[]