summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AggregateType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AggregateType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AggregateType.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AggregateType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AggregateType.php
new file mode 100644
index 00000000..ff4a73cd
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/AggregateType.php
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\AggregateType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Indicates the maximum or minimum value of a property that is used for
+ * ordering groups of items.
+ *
+ * @package php-ews\Enumeration
+ */
+class AggregateType extends Enumeration
+{
+ /**
+ * Indicates that a maximum aggregation should be used.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const MAXIMUM = 'Maximum';
+
+ /**
+ * Indicates that a minimum aggregation should be used.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const MINIMUM = 'Minimum';
+}