NAME
WebService::GData::Feed::Entry - Abstract class wrapping json atom feed entry tag for google data API v2.
VERSION
0.01
SYNOPSIS
use WebService::GData::Feed::Entry;
#create an object that only has read access
my $feed = new WebService::GData::Feed::Entry($jsonfeed,$auth);
$feed->title;
$feed->author;
$feed->summary;
$feed->published;
DESCRIPTION
inherits from WebService::GData::Feed;
This package wraps the entry tag from a query to a feed using the json format of the Google Data API v2 (no other format is supported!).
It gives you access to some of the entry tag data via wrapper methods.
Unless you implement a service, you should never instantiate this class directly.
CONSTRUCTOR
new
Accept the contenst of the entry tag from a feed that has been perlified (from_json($json_string)) and an auth object.
The auth object is not use in this class.
INHERITED METHODS
As it inherits from WebService::GData::Feed, you get access to the same methods that also exists within the entry tag namespace.
This inherited method will send you back the entry data, not the feed data.
title
updated
category
link
author
etag
CUSTOM METHODS
id
get the id of the entry.
summary
get/set the summary of the entry (description).
content_type
Get the content type of the entry.
content_source
Get the content source of the entry.
published
Get the publication date of the entry.
CONFIGURATION AND ENVIRONMENT
none
DEPENDENCIES
INCOMPATIBILITIES
none
BUGS AND LIMITATIONS
If you do me the favor to _use_ this module and find a bug, please email me i will try to do my best to fix it (patches welcome)!
AUTHOR
shiriru <shiriru0111[arobas]hotmail.com>
LICENSE AND COPYRIGHT
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
6 POD Errors
The following errors were encountered while parsing the POD:
- Around line 86:
You forgot a '=back' before '=head1'
- Around line 113:
You forgot a '=back' before '=head2'
- Around line 120:
You forgot a '=back' before '=head2'
- Around line 126:
You forgot a '=back' before '=head2'
- Around line 132:
You forgot a '=back' before '=head2'
- Around line 139:
You forgot a '=back' before '=head1'