NAME
Net::OAuth::LP::Model::Bug - Launchpad.net bug Interface
SYNOPSIS
my $c = Net::OAuth::LP::Client->new;
$c->staging(1);
my $bug = $c->namespace('Bug')->by_id(3);
say "Title: ". $bug->title;
say "Desc: ". $bug->description;
say "Heat: ". $bug->heat;
DESCRIPTION
Bug model for Launchpad.net Bugs.
ATTRIBUTES
bug
Bug object.
METHODS
by_id
This needs to be called before any of the below methods. Takes a Bug ID number.
id
Returns bug number.
title
Returns title of bug.
tasks
Returns a list of entries in the tasks object.
owner
Returns creator of bug
web_link
Returns browseable URL link to resource.
messages
Returns bug messages associated with Bug.
message_count
Returns message count
heat
Returns heat/importance of bug
description
Returns bug description
information_type
Returns whether this bug is a public/private issue.
tags
Returns a list of Tags associated with bug.
AUTHOR
Adam Stokes, <adamjs at cpan.org>
BUGS
Report bugs to https://github.com/battlemidget/Net-OAuth-LP/issues.
DEVELOPMENT
Repository
http://github.com/battlemidget/Net-OAuth-LP
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Net::OAuth::LP
SEE ALSO
https://launchpad.net/launchpadlib, "Python implementation"
COPYRIGHT
Copyright 2013-2014 Adam Stokes
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.