summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/PhysicalAddressKeyType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/PhysicalAddressKeyType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/PhysicalAddressKeyType.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/PhysicalAddressKeyType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/PhysicalAddressKeyType.php
new file mode 100644
index 00000000..7239a1fb
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/PhysicalAddressKeyType.php
@@ -0,0 +1,43 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Enumeration\PhysicalAddressKeyType.
+ */
+
+namespace jamesiarmes\PhpEws\Enumeration;
+
+use \jamesiarmes\PhpEws\Enumeration;
+
+/**
+ * Defines the key for a physical address.
+ *
+ * @package php-ews\Enumeration
+ */
+class PhysicalAddressKeyType extends Enumeration
+{
+ /**
+ * Indicates that the address is a business.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const BUSINESS = 'Business';
+
+ /**
+ * Indicates that the address is a home.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const HOME = 'Home';
+
+ /**
+ * Indicates that the address is another type of location.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ const OTHER = 'Other';
+}