summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MailboxSearchLocationType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MailboxSearchLocationType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MailboxSearchLocationType.php45
1 files changed, 45 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MailboxSearchLocationType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MailboxSearchLocationType.php
new file mode 100644
index 00000000..3429a841
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MailboxSearchLocationType.php
@@ -0,0 +1,45 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\MailboxSearchLocationType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines whether a search or fetch for a conversation should span either the
+ * primary mailbox, archive mailbox, or both the primary and archive mailbox.
+ *
+ * @package php-ews\Enumeration
+ */
+class MailboxSearchLocationType extends Enumeration
+{
+ /**
+ * Indicates a scope that targets both the primary mailbox and archive
+ * mailbox.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const ALL = 'All';
+
+ /**
+ * Indicates a scope that targets the archive mailbox for a user.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const ARCHIVE = 'ArchiveOnly';
+
+ /**
+ * Indicates a scope that targets the primary mailbox for a user.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const PRIMARY = 'PrimaryOnly';
+}