@seamapi/http - v2.1.0
    Preparing search index...

    Type Alias ThermostatDailyProgram

    Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time.

    type ThermostatDailyProgram = {
        created_at: string;
        device_id: string;
        name: string | null;
        periods: { climate_preset_key: string; starts_at_time: string }[];
        thermostat_daily_program_id: string;
        workspace_id: string;
    }
    Index
    created_at: string

    Date and time at which the thermostat daily program was created.

    device_id: string

    ID of the thermostat device on which the thermostat daily program is configured.

    name: string | null

    User-friendly name to identify the thermostat daily program.

    periods: { climate_preset_key: string; starts_at_time: string }[]

    Array of thermostat daily program periods.

    Type Declaration

    • climate_preset_key: string

      Key of the climate preset to activate at the starts_at_time.

    • starts_at_time: string

      Time at which the thermostat daily program period starts, in ISO 8601 format.

    thermostat_daily_program_id: string

    ID of the thermostat daily program.

    workspace_id: string

    ID of the workspace that contains the thermostat daily program.