Subject: | Net::Google::Calendar::Entry missing originalEvent functionality |
Hi,
Just hit an issue with support for the originalEvent information in the XML. Here's a patch to add support for this.
<patch>
--- lib/Net/Google/Calendar/Entry.pm 2012-03-18 14:58:49.000000000 +0000
+++ lib/Net/Google/Calendar/Entry.pm 2013-08-13 12:20:10.252050449 +0100
@@ -142,6 +142,17 @@
return $self->_gd_element('eventStatus', @_);
}
+=head2 original_event [event]
+
+Get or set the original event ID.
+
+=cut
+
+sub original_event {
+ my $self = shift;
+ return $self->_gd_element('originalEvent', @_);
+}
+
=head2 is_allday </patch>
Thanks, Ian.