summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AffectedTaskOccurrencesType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AffectedTaskOccurrencesType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AffectedTaskOccurrencesType.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AffectedTaskOccurrencesType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AffectedTaskOccurrencesType.php
new file mode 100644
index 00000000..402253d5
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AffectedTaskOccurrencesType.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\AffectedTaskOccurrencesType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines whether a task instance or a task master is deleted by a DeleteItem
+ * operation.
+ *
+ * @package php-ews\Enumeration
+ */
+class AffectedTaskOccurrencesType extends Enumeration
+{
+ /**
+ * A delete item request deletes the master task, and therefore all
+ * recurring tasks that are associated with the master task.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const ALL = 'AllOccurrences';
+
+ /**
+ * A delete item request deletes only specific occurrences of a task.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const SPECIFIED = 'SpecifiedOccurrenceOnly';
+}