summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationPropertyType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationPropertyType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationPropertyType.php62
1 files changed, 62 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationPropertyType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationPropertyType.php
new file mode 100644
index 00000000..58f6d141
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationPropertyType.php
@@ -0,0 +1,62 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\UserConfigurationPropertyType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the property types to get in a GetUserConfiguration operation.
+ *
+ * @package php-ews\Enumeration
+ */
+class UserConfigurationPropertyType extends Enumeration
+{
+ /**
+ * Specifies the identifier, dictionary, XML data, and binary data property
+ * types.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const ALL = 'All';
+
+ /**
+ * Specifies binary data property types.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const BINARY_DATA = 'BinaryData';
+
+ /**
+ * Specifies dictionary property types.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const DICTIONARY = 'Dictionary';
+
+ /**
+ * Specifies the identifier property.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const ID = 'Id';
+
+ /**
+ * Specifies XML data property types.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const XML_DATA = 'XmlData';
+}