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

    Type Alias ThermostatsSetTemperatureThresholdParameters

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

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

    lower_limit_celsius?: number

    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

    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

    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

    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.