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

    Type Alias NoiseThreshold

    Represents a noise threshold for a noise sensor. Thresholds represent the limits of noise tolerated at a property, which can be customized for each hour of the day. Each device has its own default thresholds, but you can use the Seam API to modify them.

    type NoiseThreshold = {
        device_id: string;
        ends_daily_at: string;
        name: string;
        noise_threshold_decibels: number;
        noise_threshold_id: string;
        noise_threshold_nrs?: number;
        starts_daily_at: string;
    }
    Index
    device_id: string

    Unique identifier for the device that contains the noise threshold.

    ends_daily_at: string

    Time at which the noise threshold should become inactive daily.

    name: string

    Name of the noise threshold.

    noise_threshold_decibels: number

    Noise level in decibels for the noise threshold.

    noise_threshold_id: string

    Unique identifier for the noise threshold.

    noise_threshold_nrs?: number

    Noise level in Noiseaware Noise Risk Score (NRS) for the noise threshold. This parameter is only relevant for Noiseaware sensors.

    starts_daily_at: string

    Time at which the noise threshold should become active daily.