summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TrackingPropertyType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TrackingPropertyType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TrackingPropertyType.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TrackingPropertyType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TrackingPropertyType.php
new file mode 100644
index 00000000..61bdf1b8
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TrackingPropertyType.php
@@ -0,0 +1,37 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\TrackingPropertyType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents a name and value pair of strings that is used to create properties
+ * for message tracking reports.
+ *
+ * @package php-ews\Type
+ */
+class TrackingPropertyType extends Type
+{
+ /**
+ * Defines a name for the message tracking report property.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ public $Name;
+
+ /**
+ * Defines a value for the message tracking report property.
+ *
+ * This element is optional.
+ *
+ * @since Exchange 2010 SP1
+ *
+ * @var string
+ */
+ public $Value;
+}