/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ /*** THIS FILE IS GENERATED, DO NOT EDIT ***/ /** * Three-Level Auto Setting * * It is used for a three-level and Auto setting of an attribute on a device. This data type has four values as * enumerated below, and cannot be expanded. * * @see {@link MatterSpecification.v151.Core} ยง 7.19.2.50 */ export enum ThreeLevelAuto { /** * Automatic Level */ Auto = 0, /** * Low Level */ Low = 1, /** * Medium Level */ Medium = 2, /** * High Level */ High = 3 }