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

    Interface HolidayModeUpdate

    A holiday-mode window to apply. startDate/endDate are ISO 8601 wall-clock strings; both are ignored when isEnabled is false. The start is always explicit (the Home API carries no timezone context to anchor a "now" default), so callers pass the full window.

    interface HolidayModeUpdate {
        endDate: string;
        isEnabled: boolean;
        startDate: string;
    }
    Index
    endDate: string

    Window end (ISO 8601). Ignored when isEnabled is false.

    isEnabled: boolean

    Whether holiday mode is on.

    startDate: string

    Window start (ISO 8601). Ignored when isEnabled is false.