NAME
Net::Launchpad::Model::Query::Branch - Branch query model
VERSION
version 2.101
SYNOPSIS
use Net::Launchpad::Client;
use Net::Launchpad::Query;
my $c = Net::Launchpad::Client->new(
consumer_key => 'key',
access_token => '3243232',
access_token_secret => '432432432'
);
my $query = Net::Launchpad::Query->new(lpc => $c);
my $res = $query->branches->get_by_unique_name('~adam-stokes/+junk/cloud-installer');
print "Name: ". $res->result->{unique_name};
AUTHOR
Adam Stokes <adamjs@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Adam Stokes.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.