package WebService::Google::Reader::ListElement; use strict; use warnings; use base qw(Class::Accessor::Fast); __PACKAGE__->mk_ro_accessors(qw( id categories count firstitemmsec label shared sortid title value isBloggerUser userId userEmail )); sub new { my ($class, $ref) = @_; my $self = bless $ref, $class; if (exists $self->{categories}) { for my $cat (@{$self->{categories}}) { $cat = __PACKAGE__->new($cat); } } return $self; } use overload q("") => sub { $_[0]->id }; 1; __END__ =head1 NAME WebService::Google::Reader::ListElement =head1 DESCRIPTION This module provides the following accessors. Each list type populates a different subset of the fields. Stringifying a ListElement will return the contents the B field. =over =item id =item categories This is a reference to more ListElements. =item count =item firstitemmsec =item label =item shared =item sortid =item title =item value =item isBloggerUser =item userId =item userEmail =back =head1 METHODS =over =item $elm = WebService::Google::Reader::ListElement->B($ref) =back =cut