summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetServiceConfigurationType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetServiceConfigurationType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetServiceConfigurationType.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetServiceConfigurationType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetServiceConfigurationType.php
new file mode 100644
index 00000000..b0a5afdc
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetServiceConfigurationType.php
@@ -0,0 +1,44 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\GetServiceConfigurationType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a GetServiceConfiguration request.
+ *
+ * @package php-ews\Request
+ */
+class GetServiceConfigurationType extends BaseRequestType
+{
+ /**
+ * Identifies who the caller is sending as.
+ *
+ * This element is optional.
+ *
+ * If this element is not present, the authenticated user is assumed to be
+ * the sender. The ActingAs element must be included for requesting sender
+ * hints. An ErrorInvalidArgument error can be returned in a response if the
+ * ActingAs element is missing, does not include a routing type, does not
+ * include an e-mail address, contains an invalid e-mail address, does not
+ * resolve to a user in Active Directory Domain Services (AD DS), or
+ * resolves to multiple users in AD DS.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\Type\EmailAddressType
+ */
+ public $ActingAs;
+
+ /**
+ * Contains the requested service configurations.
+ *
+ * This element is required.
+ *
+ * @since Exchange 2010
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfServiceConfigurationType
+ */
+ public $RequestedConfiguration;
+}