summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchResultType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchResultType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchResultType.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchResultType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchResultType.php
new file mode 100644
index 00000000..aefaeab1
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchResultType.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\SearchResultType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the type of search to perform.
+ *
+ * @package php-ews\Enumeration
+ */
+class SearchResultType extends Enumeration
+{
+ /**
+ * Return item preview information.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const PREVIEW_ONLY = 'PreviewOnly';
+
+ /**
+ * Return the search statistics.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const STATISTICS_ONLY = 'StatisticsOnly';
+}