summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php
diff options
context:
space:
mode:
authorroot2019-02-19 18:53:50 +0100
committerroot2019-02-19 18:53:50 +0100
commit0ad4c0f8196b61699754762aacbaab0223478ab9 (patch)
treede434c4aea8d07ecd01cd3badd48d057d62c2d1b /modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php
parent[usb-lock-off] Edit rule cleanup and fix of the dropdown boxes. (diff)
parent[statistics] Fix RAM change warning to handle increase too (diff)
downloadslx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.tar.gz
slx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.tar.xz
slx-admin-0ad4c0f8196b61699754762aacbaab0223478ab9.zip
Merge branch 'master' into usb-lock-offusb-lock-off
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php113
1 files changed, 113 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php
new file mode 100644
index 00000000..6e8c1699
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php
@@ -0,0 +1,113 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\FindPeopleType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a set of data used in a FindPeople request.
+ *
+ * @package php-ews\Request
+ */
+class FindPeopleType extends BaseRequestType
+{
+ /**
+ * Specifies a value that is applied to a set of Persona properties.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\RestrictionType
+ */
+ public $AggregationRestriction;
+
+ /**
+ * Specifies the context properties of the contact.
+ *
+ * @since Exchange 2016
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfContextProperty
+ */
+ public $Context;
+
+ /**
+ * Describes how paged conversation or item information is returned.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\IndexedPageViewType
+ */
+ public $IndexedPageItemView;
+
+ /**
+ * Identifies the folder in which to search.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\TargetFolderIdType
+ */
+ public $ParentFolderId;
+
+ /**
+ * Specifies the set of persona properties.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\PersonaResponseShapeType
+ */
+ public $PersonaShape;
+
+ /**
+ * Specifies the source data for the query.
+ *
+ * @since Exchange 2016
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfPeopleQuerySource
+ */
+ public $QuerySources;
+
+ /**
+ * Contains a mailbox query string based on Advanced Query Syntax (AQS).
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\QueryStringType
+ */
+ public $QueryString;
+
+ /**
+ * Represents the restriction or query that is used to filter items.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\Type\RestrictionType
+ */
+ public $Restriction;
+
+ /**
+ * Internal use only.
+ *
+ * @since Exchange 2016
+ *
+ * @var boolean
+ */
+ public $SearchPeopleSuggestionIndex;
+
+ /**
+ * Defines how items are sorted.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfFieldOrdersType
+ */
+ public $SortOrder;
+
+ /**
+ * Specifies the query string for topic searches.
+ *
+ * @since Exchange 2016
+ *
+ * @var string
+ */
+ public $TopicQueryString;
+}