summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/FolderQueryTraversalType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/FolderQueryTraversalType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/FolderQueryTraversalType.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/FolderQueryTraversalType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/FolderQueryTraversalType.php
new file mode 100644
index 00000000..5cb80a62
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/FolderQueryTraversalType.php
@@ -0,0 +1,46 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\FolderQueryTraversalType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the type of sub-tree traversal for an operation.
+ *
+ * @package php-ews\Enumeration
+ */
+class FolderQueryTraversalType extends Enumeration
+{
+ /**
+ * Consider both direct children as well as all subfolders contained within
+ * those children as well as the children's children, etc.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const DEEP = 'Deep';
+
+ /**
+ * Consider only folders that are direct children of the parent folder(s) in
+ * question.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const SHALLOW = 'Shallow';
+
+ /**
+ * Consider only those items that are soft deleted from the parent folders
+ * specified.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const SOFT_DELETED = 'SoftDeleted';
+}