summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PersonaPhoneNumberType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PersonaPhoneNumberType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PersonaPhoneNumberType.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PersonaPhoneNumberType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PersonaPhoneNumberType.php
new file mode 100644
index 00000000..44d363f5
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/PersonaPhoneNumberType.php
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\PersonaPhoneNumberType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use \jamesiarmes\PhpEws\Type;
+
+/**
+ * Represents a phone number and type information and is associated with a set
+ * of attributions.
+ *
+ * @package php-ews\Type
+ */
+class PersonaPhoneNumberType extends Type
+{
+ /**
+ * Specifies the phone number.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $Number;
+
+ /**
+ * Specifies the type of phone number, for example, "Home" or "Business".
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $Type;
+}