summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ImAddressKeyType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ImAddressKeyType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ImAddressKeyType.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ImAddressKeyType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ImAddressKeyType.php
new file mode 100644
index 00000000..00da9005
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ImAddressKeyType.php
@@ -0,0 +1,43 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\ImAddressKeyType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Represents the key for an instant messenger address.
+ *
+ * @package php-ews\Enumeration
+ */
+class ImAddressKeyType extends Enumeration
+{
+ /**
+ * Instant messenger key for instant messenger address one.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const IM_ADDRESS_1 = 'ImAddress1';
+
+ /**
+ * Instant messenger key for instant messenger address two.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const IM_ADDRESS_2 = 'ImAddress2';
+
+ /**
+ * Instant messenger key for instant messenger address three.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const IM_ADDRESS_3 = 'ImAddress3';
+}