The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

NAME

XPlanner::Iteration - an iteration within an XPlanner project

SYNOPSIS

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.