summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationDictionaryObjectTypesType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationDictionaryObjectTypesType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationDictionaryObjectTypesType.php106
1 files changed, 106 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationDictionaryObjectTypesType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationDictionaryObjectTypesType.php
new file mode 100644
index 00000000..f026d487
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/UserConfigurationDictionaryObjectTypesType.php
@@ -0,0 +1,106 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\UserConfigurationDictionaryObjectTypesType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines a dictionary object's type.
+ *
+ * @package php-ews\Enumeration
+ */
+class UserConfigurationDictionaryObjectTypesType extends Enumeration
+{
+ /**
+ * Defines the object's type as a boolean.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const BOOLEAN = 'Boolean';
+
+ /**
+ * Defines the object's type as a byte.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const BYTE = 'Byte';
+
+ /**
+ * Defines the object's type as an array of bytes.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const BYTE_ARRAY = 'ByteArray';
+
+ /**
+ * Defines the object's type as a date and time.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const DATE_TIME = 'DateTime';
+
+ /**
+ * Defines the object's type as a 32-bit integer.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ CONST INTEGER_32 = 'Integer32';
+
+ /**
+ * Defines the object's type as a 64-bit integer.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const INTEGER_64 = 'Integer64';
+
+ /**
+ * Defines the object's type as a string.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const STRING = 'String';
+
+ /**
+ * Defines the object's type as an array of strings.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const STRING_ARRAY = 'StringArray';
+
+ /**
+ * Defines the object's type as an unsigned 32-bit integer.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const UNSIGNED_INTEGER_32 = 'UnsignedInteger32';
+
+ /**
+ * Defines the object's type as an unsigned 64-bit integer.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ const UNSIGNED_INTEGER_64 = 'UnsignedInteger64';
+}