summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SensitivityChoicesType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SensitivityChoicesType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SensitivityChoicesType.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SensitivityChoicesType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SensitivityChoicesType.php
new file mode 100644
index 00000000..86002c85
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/SensitivityChoicesType.php
@@ -0,0 +1,52 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\SensitivityChoicesType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Indicates the sensitivity level of an item.
+ *
+ * @package php-ews\Enumeration
+ */
+class SensitivityChoicesType extends Enumeration
+{
+ /**
+ * Indicates that the item is confidential.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const CONFIDENTIAL = 'Confidential';
+
+ /**
+ * Indicates that the item has a normal sensitivity.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const NORMAL = 'Normal';
+
+ /**
+ * Indicates that the item is personal.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const PERSONAL = 'Personal';
+
+ /**
+ * Indicates that the item is private.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const PRIVATE_ITEM = 'Private';
+}