summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/PlayOnPhoneType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/PlayOnPhoneType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/PlayOnPhoneType.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/PlayOnPhoneType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/PlayOnPhoneType.php
new file mode 100644
index 00000000..4dea5cb2
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/PlayOnPhoneType.php
@@ -0,0 +1,37 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\PlayOnPhoneType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Represents a request to read an item on a phone.
+ *
+ * @package php-ews\Request
+ */
+class PlayOnPhoneType extends BaseRequestType
+{
+ /**
+ * Represents the dial string of the phone number that is called to play an
+ * item by phone.
+ *
+ * This element is required.
+ *
+ * @since Exchange 2010
+ *
+ * @var string
+ */
+ public $DialString;
+
+ /**
+ * Represents the identifier of an item to play on a phone.
+ *
+ * This element is required.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\Type\ItemIdType
+ */
+ public $ItemId;
+}