summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MemberStatusType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MemberStatusType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MemberStatusType.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MemberStatusType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MemberStatusType.php
new file mode 100644
index 00000000..7a5d0cd7
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MemberStatusType.php
@@ -0,0 +1,44 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\MemberStatusType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Represents the status of a distribution list member on the server.
+ *
+ * @package php-ews\Enumeration
+ */
+class MemberStatusType extends Enumeration
+{
+ /**
+ * Referenced object is not available.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const DEMOTED = 'Demoted';
+
+ /**
+ * Member information in a distribution list is in sync with the referenced
+ * object.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const NORMAL = 'Normal';
+
+ /**
+ * Member information is invalid or unrecognized.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const UNRECOGNIZED = 'Unrecognized';
+}