summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DisableAppType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DisableAppType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DisableAppType.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DisableAppType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DisableAppType.php
new file mode 100644
index 00000000..1c23b15a
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/DisableAppType.php
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\DisableAppType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a request to disable an app.
+ *
+ * @package php-ews\Request
+ */
+class DisableAppType extends BaseRequestType
+{
+ /**
+ * Specifies the reason for disabling an app.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\DisableReasonType
+ */
+ public $DisableReason;
+
+ /**
+ * Specifies the identifier of an item.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $ID;
+}