summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/BodyType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/BodyType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/BodyType.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/BodyType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/BodyType.php
new file mode 100644
index 00000000..4af49a1f
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/BodyType.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\BodyType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Specifies the body of an item.
+ *
+ * @package php-ews\Type
+ */
+class BodyType extends StringType
+{
+ /**
+ * Specifies the type of the body.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\BodyTypeType
+ */
+ public $BodyType;
+
+ /**
+ * Boolean value that indicates whether the body is truncated.
+ *
+ * @since Exchange 2007
+ *
+ * @var boolean
+ */
+ public $IsTruncated;
+}