interface VariableValue {
    isReadOnly?: boolean;
    isSecret?: boolean;
    value?: string;
}

Hierarchy (View Summary)

Properties

isReadOnly?: boolean

Gets or sets if the variable is read only or not.

isSecret?: boolean

Gets or sets as the variable is secret or not.

value?: string

Gets or sets the value.