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

    Type Alias ThermostatsSetHvacModeParameters

    type ThermostatsSetHvacModeParameters = {
        cooling_set_point_celsius?: number;
        cooling_set_point_fahrenheit?: number;
        device_id: string;
        heating_set_point_celsius?: number;
        heating_set_point_fahrenheit?: number;
        hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool" | "eco";
    }
    Index
    cooling_set_point_celsius?: number

    Cooling set point in °C that you want to set for the thermostat. You must set one of the cooling_set_point parameters.

    cooling_set_point_fahrenheit?: number

    Cooling set point in °F that you want to set for the thermostat. You must set one of the cooling_set_point parameters.

    device_id: string

    ID of the thermostat device for which you want to set the HVAC mode.

    heating_set_point_celsius?: number

    Heating set point in °C that you want to set for the thermostat. You must set one of the heating_set_point parameters.

    heating_set_point_fahrenheit?: number

    Heating set point in °F that you want to set for the thermostat. You must set one of the heating_set_point parameters.

    hvac_mode_setting: "off" | "cool" | "heat" | "heat_cool" | "eco"