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

    Interface RequestCompleteEvent

    Emitted when a request (possibly after retries) completes successfully.

    interface RequestCompleteEvent {
        correlationId: string;
        durationMs: number;
        method: string;
        status: number;
        url: string;
    }

    Hierarchy (View Summary)

    Index
    correlationId: string

    Unique request identifier (UUID v4).

    durationMs: number

    Elapsed time in milliseconds, including any retry delays.

    method: string

    HTTP method, uppercase.

    status: number

    Final HTTP status code returned by the upstream server.

    url: string

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