NAME

BuildForge::API::TagVar


SYNOPSIS

        my $TagVar = new BuildForge::API::TagVar();
        $TagVar->{'name'} = "Patch";
        $TagVar->{'auto_increment'} = "N";
        $Project->AddTagVar($TagVar);


DESCRIPTION

    This is available to use after a BuildForge::API object has been
instantiated. It is used to create and delete tag variables defined for 
projects inside the BuildForge console. The initial value of a variable is '1'.


METHODS

new({TagVarParamsHashRef})

Create an ojbect to access tag variables from a BuildForge project.

name
The name for this tag variable

project_id
The id of the associated project

value
The initial value for this variable

auto_increment
(Y/N) Should variable increase each build

Sync()

Syncs the object with information from the console database. Requires the objects 'project_id' variable to be set, along with either the objects 'tag_id' or 'name' property.


AUTHOR

BuildForge, Inc.