summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetMessageTrackingReportResponseMessageType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetMessageTrackingReportResponseMessageType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetMessageTrackingReportResponseMessageType.php53
1 files changed, 53 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetMessageTrackingReportResponseMessageType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetMessageTrackingReportResponseMessageType.php
new file mode 100644
index 00000000..4c7cdc8e
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetMessageTrackingReportResponseMessageType.php
@@ -0,0 +1,53 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Response\GetMessageTrackingReportResponseMessageType.
+ */
+
+namespace jamesiarmes\PhpEws\Response;
+
+/**
+ * Represents the response for the GetMessageTrackingReport operation.
+ *
+ * @package php-ews\Response
+ */
+class GetMessageTrackingReportResponseMessageType extends ResponseMessageType
+{
+ /**
+ * Contains a single message that is returned in a GetMessageTrackingReport
+ * operation.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var \jamesiarmes\PhpEws\Type\MessageTrackingReportType
+ */
+ public $MessageTrackingReport;
+
+ /**
+ * Provides timing and performance information that is used for reporting in
+ * a DataCenter.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
+ */
+ public $Diagnostics;
+
+ /**
+ * Contains a property bag to store errors that are returned through the Web
+ * service.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfArraysOfTrackingPropertiesType
+ */
+ public $Errors;
+
+ /**
+ * Contains a list of one or more tracking properties.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfTrackingPropertiesType
+ */
+ public $Properties;
+}