NAME
WebService::LiveJournal::EventList - List of LiveJournal events
VERSION
version 0.01
SYNOPSIS
use WebService::LiveJournal::Client;
my $client = WebService::LiveJournal::Client->new(
username => $user,
password => $pass,
);
# $list is an instance of WS::LJ::EventList
my $list = $client->getevents('lastn', howmany => 50);
foreach my $event (@$list)
{
# event is an instance of WS::LJ::Event
...
}
DESCRIPTION
This class represents a list of LiveJournal events. It can be used as a array reference.
SEE ALSO
WebService::LiveJournal, WebService::LiveJournal::Event,
AUTHOR
Graham Ollis <plicease@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.