Pithub::Issues::Events
Github v3 Issue Events API
- Provided by: libpithub-perl (Version: 0.01033-1)
- Report a bug
Github v3 Issue Events API
version 0.01033
GET /repos/:user/:repo/issues/events/:id
Examples:
my $e = Pithub::Issues::Events->new;
my $result = $e->get(
repo => 'Pithub',
user => 'plu',
event_id => 1,
);
GET /repos/:user/:repo/issues/:issue_id/events
Examples:
my $e = Pithub::Issues::Events->new;
my $result = $e->list(
repo => 'Pithub',
user => 'plu',
issue_id => 1,
);
GET /repos/:user/:repo/issues/events
Examples:
my $e = Pithub::Issues::Events->new;
my $result = $e->list(
repo => 'Pithub',
user => 'plu',
);
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.