
WWW::Ohloh::API::StackEntry - A project entry in a stack

use WWW::Ohloh::API;
my $ohloh = WWW::Ohloh::API->new( api_key => $my_api_key );
# from an account
my @entries = $ohloh->get_account_stack( $account_id )->stack_entries;
# from a project
my @stacks = $ohloh->get_project_stacks( $project_id );
my @entries = $stacks[0]->stack_entries;

W::O::A::StackEntry represents one project in a stack.

Returns the unique id for the stack entry.
Returns the time at which the project was added to the stack.
Returns the id of the stack containing the entry.
Returns the id of the project.
Returns the project as a WWW::Ohloh::API::Project object.
If the optional argument $retrieve is given and false, the project will not be queried from the Ohloh server if it's not already known, and the method will return nothing.
Return the stack entry as an XML string. Note that this is not the same xml document as returned by the Ohloh server.


This document describes WWW::Ohloh::API version 0.3.2

WWW::Ohloh::API is very extremely alpha quality. It'll improve, but till then: Caveat emptor.
Please report any bugs or feature requests to bug-www-ohloh-api@rt.cpan.org, or through the web interface at http://rt.cpan.org.

Yanick Champoux <yanick@cpan.org>

Copyright (c) 2008, Yanick Champoux <yanick@cpan.org>. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.