summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetDiscoverySearchConfigurationType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetDiscoverySearchConfigurationType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetDiscoverySearchConfigurationType.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetDiscoverySearchConfigurationType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetDiscoverySearchConfigurationType.php
new file mode 100644
index 00000000..944bc0db
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetDiscoverySearchConfigurationType.php
@@ -0,0 +1,42 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\GetDiscoverySearchConfigurationType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a request to retrieve the eDiscovery search configuration.
+ *
+ * @package php-ews\Request
+ */
+class GetDiscoverySearchConfigurationType extends BaseRequestType
+{
+ /**
+ * Contains a Boolean value that indicates whether to expand the membership
+ * of the group returned from a GetSearchableMailboxes request.
+ *
+ * @since Exchange 2013
+ *
+ * @var boolean
+ */
+ public $ExpandGroupMembership;
+
+ /**
+ * Specifies whether to include the in-place hold configuration.
+ *
+ * @since Exchange 2013
+ *
+ * @var boolean
+ */
+ public $InPlaceHoldConfigurationOnly;
+
+ /**
+ * Specifies the identifier of the search.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $SearchId;
+}