summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchPageDirectionType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchPageDirectionType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchPageDirectionType.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchPageDirectionType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchPageDirectionType.php
new file mode 100644
index 00000000..d5477665
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SearchPageDirectionType.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\SearchPageDirectionType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the direction for pagination in a search result.
+ *
+ * @package php-ews\Enumeration
+ */
+class SearchPageDirectionType extends Enumeration
+{
+ /**
+ * Move to the next page in the result set.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const NEXT = 'Next';
+
+ /**
+ * Move to the previous page in the result set.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ const PREVIOUS = 'Previous';
+}