A wrapper class for a generic variable.

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

Hierarchy (View Summary)

Properties

isReadOnly?: boolean

Indicates whether the variable can be changed during script's execution runtime.

isSecret?: boolean

Indicates whether the variable should be encrypted at rest.

value?: string

The value of the variable.