summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmartResponseType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmartResponseType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmartResponseType.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmartResponseType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmartResponseType.php
new file mode 100644
index 00000000..9408b43c
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SmartResponseType.php
@@ -0,0 +1,23 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\SmartResponseType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Base class for smart responses that include new body content.
+ *
+ * @package php-ews\Type
+ */
+class SmartResponseType extends SmartResponseBaseType
+{
+ /**
+ * Represents the actual body content of a message.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\BodyType
+ */
+ public $NewBodyContent;
+}