Represents a variable group.

interface VariableGroup {
    alias?: string;
    description?: string;
    id?: number;
    name?: string;
    type?: string;
    variables?: { [key: string]: BuildDefinitionVariable };
}

Hierarchy (View Summary)

Properties

alias?: string

The Name of the variable group.

description?: string

The description.

id?: number

The ID of the variable group.

name?: string

The name of the variable group.

type?: string

The type of the variable group.

variables?: { [key: string]: BuildDefinitionVariable }