logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Pithub::Issues::Events - Github v3 Issue Events API

Author

       Johannes Plunien <plu@cpan.org>

Methods

get
       •   Get a single event

               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,
               );

   list
       •   List events for an issue

               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,
               );

       •   List events for a repository

               GET /repos/:user/:repo/issues/events

           Examples:

               my $e = Pithub::Issues::Events->new;
               my $result = $e->list(
                   repo => 'Pithub',
                   user => 'plu',
               );

Name

       Pithub::Issues::Events - Github v3 Issue Events API

Version

       version 0.01043

See Also