Interface LedgerV1Response

Response expected from a LedgerRequest. This is the default request response, triggered when expand and binary are both false. This is the response for API version 1.

interface LedgerV1Response {
    api_version?: number;
    forwarded?: boolean;
    id: string | number;
    result: LedgerV1ResponseResult;
    status?: string;
    type: string;
    warning?: "load";
    warnings?: ResponseWarning[];
}

Hierarchy (View Summary)

Properties

api_version?: number
forwarded?: boolean
id: string | number
result: LedgerV1ResponseResult
status?: string
type: string
warning?: "load"
warnings?: ResponseWarning[]