summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RulePredicateSizeRangeType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RulePredicateSizeRangeType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RulePredicateSizeRangeType.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RulePredicateSizeRangeType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RulePredicateSizeRangeType.php
new file mode 100644
index 00000000..f792c0e0
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/RulePredicateSizeRangeType.php
@@ -0,0 +1,37 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\RulePredicateSizeRangeType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Specifies the minimum and maximum sizes that incoming messages must be in
+ * order for the condition or exception to apply.
+ *
+ * @package php-ews\Type
+ */
+class RulePredicateSizeRangeType extends Type
+{
+ /**
+ * Specifies the maximum size that a message must be in order for the
+ * condition or exception to apply.
+ *
+ * @since Exchange 2010
+ *
+ * @var integer
+ */
+ public $MaximumSize;
+
+ /**
+ * Specifies the minimum size that a message must be in order for the
+ * condition or exception to apply.
+ *
+ * @since Exchange 2010
+ *
+ * @var integer
+ */
+ public $MinimumSize;
+}