summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SearchMailboxesResultType.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/Type/SearchMailboxesResultType.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/Type/SearchMailboxesResultType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SearchMailboxesResultType.php117
1 files changed, 117 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SearchMailboxesResultType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SearchMailboxesResultType.php
new file mode 100644
index 00000000..4de63da8
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/SearchMailboxesResultType.php
@@ -0,0 +1,117 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\SearchMailboxesResultType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+use jamesiarmes\PhpEws\Type;
+
+/**
+ * Defines the result of a SearchMailboxes request.
+ *
+ * @package php-ews\Type
+ */
+class SearchMailboxesResultType extends Type
+{
+ /**
+ * Contains a list of mailboxes and associated queries for discovery search.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfMailboxQueriesType
+ */
+ public $SearchQueries;
+
+ /**
+ * Contains the type of search to perform.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @see \jamesiarmes\PhpEws\Enumeration\SearchResultType
+ */
+ public $ResultType;
+
+ /**
+ * Specifies the total number of items in a search result.
+ *
+ * @since Exchange 2013
+ *
+ * @var integer
+ */
+ public $ItemCount;
+
+ /**
+ * Specifies the total size of one or more mailbox items.
+ *
+ * @since Exchange 2013
+ *
+ * @var integer
+ */
+ public $Size;
+
+ /**
+ * Specifies the number of pages returned in a search result pagination.
+ *
+ * @since Exchange 2013
+ *
+ * @var integer
+ */
+ public $PageItemCount;
+
+ /**
+ * Specifies the number of items to return in a search result pagination.
+ *
+ * @since Exchange 2013
+ *
+ * @var integer
+ */
+ public $PageItemSize;
+
+ /**
+ * Specifies a list of one or more KeywordStat elements.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfKeywordStatisticsSearchResultsType
+ */
+ public $KeywordStats;
+
+ /**
+ * Specifies a list of items available for preview.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfSearchPreviewItemsType
+ */
+ public $Items;
+
+ /**
+ *
+ *
+ * @since Exchange 2013
+ *
+ * @var
+ */
+ public $FailedMailboxes;
+
+ /**
+ *
+ *
+ * @since Exchange 2013
+ *
+ * @var
+ */
+ public $Refiners;
+
+ /**
+ *
+ *
+ * @since Exchange 2013
+ *
+ * @var
+ */
+ public $MailboxStats;
+}