XPlanner::Iteration - an iteration within an XPlanner project


XPlanner documentation  | view source Contained in the XPlanner distribution.

Index


NAME

Top

XPlanner::Iteration - an iteration within an XPlanner project

SYNOPSIS

Top

  use XPlanner;

  my $xp->login(...);
  my $iteration = $xp->projects->{"Some Project"}
                     ->iterations->{"Some Iteration"};

  my $stories = $iteration->stories;

  my $story = $iteration->add_story( %story_data );




DESCRIPTION

Top

An object representing an iteration within a project in XPlanner

Methods

add_story

  my $story = $iteration->add_story( %story_data );

Creates a new story in this $iteration. See XPlanner::Story for what fields should go into %story_data.


XPlanner documentation  | view source Contained in the XPlanner distribution.