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

    Interface HomeErrorLogEntry

    Single error-log entry returned by the MELCloud Home error-history endpoint. errorReason is null when the BFF sends no reason string for the code, and clearedTimestamp stays null while the error is uncleared.

    interface HomeErrorLogEntry {
        clearedTimestamp: string | null;
        errorCode: string;
        errorReason: string | null;
        timestamp: string;
    }
    Index
    clearedTimestamp: string | null
    errorCode: string
    errorReason: string | null
    timestamp: string