Interface: ISettingMap
model.ISettingMap
Table of contents
Properties
Properties
defaultValue
• Optional
defaultValue: string
Default value of the setting.
Defined in
description
• Optional
description: string
Optional description of the setting, explaining its purpose or usage.
Defined in
displayName
• displayName: string
The display name of the setting, used in user interfaces.
Defined in
enumValues
• Optional
enumValues: string
[] | () => string
[]
Optional array of possible values for the setting. Can be a static array or a function returning an array.
Defined in
isSecret
• Optional
isSecret: boolean
Indicates if the setting is a secret, such as a password or API key. (If true, the setting value will be masked in user interfaces.)
Defined in
name
• name: string
The internal name of the setting.
Defined in
required
• required: boolean
Indicates whether the setting is required.
Defined in
type
• type: SettingType
The type of the setting, as defined in the SettingType enum.