| XPlanner documentation | Contained in the XPlanner distribution. |
XPlanner::Story - User stories in an iteration
use XPlanner;
my $xp->login(...);
my $iteration = $xp->projects->{"Project Name"}
->iterations->{"Iteration Name"};
my $story = $iteration->stories->{"Some Story"};
$story->delete;
A story contains the following fields
These are required when creating a new story
name
description
These are optional
customerId
trackerId
lastUpdateTime
priority
estimatedHours
originalEstimatedHours
adjustedEstimatedHours
actualHours
remainingHours
completed
| XPlanner documentation | Contained in the XPlanner distribution. |
package UserStoryData; @ISA = qw(XPlanner::Story); package XPlanner::Story; use strict; use base qw(XPlanner::Object); sub _proxy_class { "UserStoryData" }
sub delete { my $self = shift; my $proxy = $self->{_proxy}; $proxy->removeUserStory($self->{id}); } 1;