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

    Type Alias ThermostatsSetTemperatureThresholdParameters

    Parameters for SeamHttpThermostats.setTemperatureThreshold.

    type ThermostatsSetTemperatureThresholdParameters = {
        device_id: string;
        lower_limit_celsius?: number | null;
        lower_limit_fahrenheit?: number | null;
        upper_limit_celsius?: number | null;
        upper_limit_fahrenheit?: number | null;
    }
    Index
    device_id: string

    ID of the thermostat device for which you want to set a temperature threshold.

    lower_limit_celsius?: number | null

    Lower temperature limit in in °C. Seam alerts you if the reported temperature is lower than this value. You can specify either lower_limit but not both.

    lower_limit_fahrenheit?: number | null

    Lower temperature limit in in °F. Seam alerts you if the reported temperature is lower than this value. You can specify either lower_limit but not both.

    upper_limit_celsius?: number | null

    Upper temperature limit in in °C. Seam alerts you if the reported temperature is higher than this value. You can specify either upper_limit but not both.

    upper_limit_fahrenheit?: number | null

    Upper temperature limit in in °C. Seam alerts you if the reported temperature is higher than this value. You can specify either upper_limit but not both.