NAME
Net::OAuth::LP::Model::Person - Launchpad.net person interface
SYNOPSIS
my $c = Net::OAuth::LP::Client->new;
$c->staging(1);
my $person = $c->namespace('Person')->by_name('~adam-stokes');
say "Name: ". $person->name;
DESCRIPTION
Person model for Launchpad.net.
ATTRIBUTES
person
Holds person object.
METHODS
by_name
This needs to be called before any of the below methods. Takes a login id number.
e.g. ~adam-stokes
name
Returns person name.
karma
Returns person karma.
display_name
Returns friendly display name, usually first and last name.
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.