The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

VERSION

version 0.01001

METHODS

get

  • Get a single event

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

Examples:

    $result = $p->issues->events->get(
        repo     => 'Pithub',
        user     => 'plu',
        event_id => 1,
    );

list

  • List events for an issue

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

    Examples:

        $result = $p->issues->events->list(
            repo     => 'Pithub',
            user     => 'plu',
            issue_id => 1,
        );
  • List events for a repository

        GET /repos/:user/:repo/issues/events
    $result = $p->issues->events->list(
        repo => 'Pithub',
        user => 'plu',
    );

AUTHOR

Johannes Plunien <plu@cpan.org>

COPYRIGHT AND LICENSE

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.