Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
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.