summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ResolveNamesType.php
diff options
context:
space:
mode:
authorSimon Rettberg2018-04-05 15:08:52 +0200
committerSimon Rettberg2018-04-05 15:08:52 +0200
commitb409fbb72591b43df7431e83e30d6c00ea633f21 (patch)
treee16963094d5189c24220bf8331a054e8be33325b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ResolveNamesType.php
parent[locationinfo] Fix color of seat counter not updating properly (diff)
downloadslx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.gz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.tar.xz
slx-admin-b409fbb72591b43df7431e83e30d6c00ea633f21.zip
[locationinfo] Add exchange backend
Closes #3170
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ResolveNamesType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ResolveNamesType.php82
1 files changed, 82 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ResolveNamesType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ResolveNamesType.php
new file mode 100644
index 00000000..bb86932e
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/ResolveNamesType.php
@@ -0,0 +1,82 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\ResolveNamesType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a request to resolve ambiguous names.
+ *
+ * @package php-ews\Request
+ */
+class ResolveNamesType extends BaseRequestType
+{
+ /**
+ * Identifies the property set returned for contacts.
+ *
+ * @since Exchange 2010 SP2
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\DefaultShapeNamesType
+ */
+ public $ContactDataShape;
+
+ /**
+ * Contains an array of contact folder identifiers that would be searched if
+ * the SearchScope attribute is set to ActiveDirectoryContacts, Contacts, or
+ * ContactsActiveDirectory.
+ *
+ * The ParentFolderIds array can only contain a single contact folder
+ * identifier. If the ParentFolderIds element is not present, the default
+ * Contacts folder is searched.
+ *
+ * The folder identifier can be used for delegate access.
+ *
+ * Active Directory searches are performed by using access control lists
+ * (ACLs). Some users might not have the rights to see some Active Directory
+ * objects.
+ *
+ * This element is optional.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseFolderIdsType
+ */
+ public $ParentFolderIds;
+
+ /**
+ * Describes whether the full contact details for public contacts for a
+ * resolved name are returned in the response.
+ *
+ * This attribute is required for public contacts. This value does not
+ * affect private contacts and private distribution lists, for which ItemId
+ * is always returned.
+ *
+ * @since Exchange 2007
+ *
+ * @var boolean
+ */
+ public $ReturnFullContactData;
+
+ /**
+ * Identifies the order and scope for a ResolveNames search.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\ResolveNamesSearchScopeType
+ */
+ public $SearchScope;
+
+ /**
+ * Contains the name of a contact or distribution list to resolve.
+ *
+ * @since Exchange 2007
+ *
+ * @var string
+ */
+ public $UnresolvedEntry;
+}