
Pithub::Users::Emails - Github v3 User Emails API

version 0.01012

POST /user/emails
Examples:
my $e = Pithub::Users::Emails->new( token => 'b3c62c6' );
my $result = $e->add( data => [ 'plu@cpan.org', 'plu@pqpq.de' ] );
DELETE /user/emails
Examples:
my $e = Pithub::Users::Emails->new( token => 'b3c62c6' );
my $result = $e->delete( data => [ 'plu@cpan.org', 'plu@pqpq.de' ] );
GET /user/emails
Examples:
my $e = Pithub::Users::Emails->new( token => 'b3c62c6' );
my $result = $e->list;

Johannes Plunien <plu@cpan.org>

This software is copyright (c) 2011 by Johannes Plunien.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.