The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

XPlanner::Iteration - an iteration within an XPlanner project

SYNOPSIS

  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

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.