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

NAME

Net::StackExchange::Answers::Response - Accessors for a set of answers

VERSION

version 0.102740

SYNOPSIS

    use Net::StackExchange;

    my $se = Net::StackExchange->new( {
        'network' => 'stackoverflow.com',
        'version' => '1.0',
    } );

    my $answers_route   = $se->route('answers');
    my $answers_request = $answers_route->prepare_request( { 'id' => '1036353' } );

    my $answers_response = $answers_request->execute( );
    print "Total: ",     $answers_response->total   (), "\n";
    print "Page: ",      $answers_response->page    (), "\n";
    print "Page size: ", $answers_response->pagesize(), "\n";

ATTRIBUTES

json

Returns JSON returned by the StackExchange API.

METHODS

answers

Returns a list of Net::StackExchange::Answers objects.

CONSUMES ROLES

Net::StackExchange::Role::Response

AUTHOR

Alan Haggai Alavi <alanhaggai@alanhaggai.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Alan Haggai Alavi.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.