summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php63
1 files changed, 63 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php
new file mode 100644
index 00000000..5965e5cf
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php
@@ -0,0 +1,63 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\MessageTrackingDeliveryStatusType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the status for a message.
+ *
+ * @package php-ews\Enumeration
+ */
+class MessageTrackingDeliveryStatusType extends Enumeration
+{
+ /**
+ * Specifies that the message was delivered to all of the specified
+ * recipients.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const DELIVERED = 'Delivered';
+
+ /**
+ * Specifies that the message is waiting for approval from a moderator.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const PENDING = 'Pending';
+
+ /**
+ * Specifies that the message was delivered and read by the recipients.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const READ = 'Read';
+
+ /**
+ * Specifies that the message was transferred to a server outside the search
+ * scope.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const TRANSFERRED = 'Transferred';
+
+ /**
+ * Specifies that a message was not delivered.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const UNSUCCESSFUL = 'Unsuccessful';
+}