/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ /*** THIS FILE IS GENERATED, DO NOT EDIT ***/ /** * The values 0 through 2 shall correspond to the values 0 through 2 used in certification_type in the Certification * Declaration. * * @see {@link MatterSpecification.v151.Core} ยง 11.23.8.2 */ export enum SoftwareVersionCertificationStatus { /** * used for development and test purposes (These will typically not be placed in DCL) */ DevTest = 0, /** * used for a SoftwareVersion when going into certification testing (These might or might not be placed in DCL, * depending on the Connectivity Standards Alliance policy and procedures) */ Provisional = 1, /** * used for a SoftwareVersion which has been certified */ Certified = 2, /** * used for a SoftwareVersion which has been revoked */ Revoked = 3 }