summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EmailAddressType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EmailAddressType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EmailAddressType.php64
1 files changed, 64 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EmailAddressType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EmailAddressType.php
new file mode 100644
index 00000000..cb98fad8
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/EmailAddressType.php
@@ -0,0 +1,64 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\EmailAddressType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Identifier for a fully resolved email address
+ *
+ * @package php-ews\Type
+ */
+class EmailAddressType extends BaseEmailAddressType
+{
+ /**
+ * The e-mail address that is represented.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ public $EmailAddress;
+
+ /**
+ * Specifies the item identifier for the e-mail address.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\ItemIdType
+ */
+ public $ItemId;
+
+ /**
+ * Specifies the type of mailbox.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\MailboxTypeType
+ */
+ public $MailboxType;
+
+ /**
+ * Specifies the name of the mailbox that is associated with the e-mail
+ * address.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ public $Name;
+
+ /**
+ * Specifies the type of routing for the e-mail address.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\RoutingType
+ */
+ public $RoutingType;
+}