summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php
diff options
context:
space:
mode:
authorSimon Rettberg2018-04-05 15:08:52 +0200
committerSimon Rettberg2018-04-05 15:08:52 +0200
commitb409fbb72591b43df7431e83e30d6c00ea633f21 (patch)
treee16963094d5189c24220bf8331a054e8be33325b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php
parent[locationinfo] Fix color of seat counter not updating properly (diff)
downloadslx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.gz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.xz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.zip
[locationinfo] Add exchange backend
Closes #3170
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';
+}