summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EndDateRecurrenceRangeType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EndDateRecurrenceRangeType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EndDateRecurrenceRangeType.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EndDateRecurrenceRangeType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EndDateRecurrenceRangeType.php
new file mode 100644
index 00000000..68aa4116
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EndDateRecurrenceRangeType.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\EndDateRecurrenceRangeType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Describes the start date and the end date of an item recurrence pattern.
+ *
+ * @package php-ews\Type
+ */
+class EndDateRecurrenceRangeType extends RecurrenceRangeBaseType
+{
+ /**
+ * Represents the end date of a recurring task or calendar item.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @todo Make a date object that extends DateTime.
+ */
+ public $EndDate;
+}