MELCloud & MELCloud Home API for Node.js - v48.2.0
    Preparing search index...

    Interface RequestErrorEvent

    Emitted when a request ultimately fails after exhausting its retries.

    interface RequestErrorEvent {
        correlationId: string;
        durationMs: number;
        error: unknown;
        method: string;
        url: string;
    }

    Hierarchy (View Summary)

    Index
    correlationId: string

    Unique request identifier (UUID v4).

    durationMs: number

    Elapsed time in milliseconds, including any retry delays.

    error: unknown

    The terminal error thrown by the request.

    method: string

    HTTP method, uppercase.

    url: string

    Request URL (possibly relative to the client's baseURL).