
Net::Google::Calendar::Entry - entry class for Net::Google::Calendar

my $event = Net::Google::Calendar::Entry->new();
$event->title('Party!');
$event->content('P-A-R-T-Why? Because we GOTTA!');
$event->location("My Flat, London, England");
$event->status('confirmed');
$event->transparency('opaque');
$event->visibility('private');
my $author = Net::Google::Calendar::Person->new;
$author->name('Foo Bar');
$author->email('foo@bar.com');
$entry->author($author);


Create a new Event object
Get or set the id.
Get or set the title.
Get or set the content.
Get or set the author
Get or set the transparency. Transparency should be one of
opaque
transparent
Get or set the visibility. Visibility should be one of
confidential
default
private
public
Get or set the status. Status should be one of
canceled
confirmed
tentative
Get or set the location
Get or set the start and end time as supplied as DateTime objects. End must be more than start.
Returns two DateTime objects depicting the start and end.
Return the edit url of this event.

See http://code.google.com/apis/gdata/common-elements.html for details

Simon Wistow <simon@thegestalt.org>

Copyright Simon Wistow, 2006
Distributed under the same terms as Perl itself.
