summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php
diff options
context:
space:
mode:
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;
+}