Share via


SettingState Simple Type

Defines the values used to specify the state of a setting's value.

<xs:simpleType name="SettingState">
    <xs:restriction
        base="string"
    >
        <xs:enumeration
            value="Set"
         />
        <xs:enumeration
            value="NotSet"
         />
        <xs:enumeration
            value="Error"
         />
    </xs:restriction>
</xs:simpleType>

Enumeration

The following values are defined by the SettingState simple type:

Value

Description

Set

The setting value has been set.

NotSet

The setting value has not been set.

Error

The value of the setting is incorrect.