Interface StringSetting

interface StringSetting {
    allowedValues?: string[];
    id: string;
    name: string;
    type: "string";
    value: string;
}

Hierarchy (view full)

Properties

allowedValues?: string[]

If present, indicates that the setting's value must be one of these values

id: string

The unique identifier of the setting

name: string

The name of the setting

type: "string"
value: string

The value of the setting