summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindMailboxStatisticsByKeywordsType.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/FindMailboxStatisticsByKeywordsType.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/FindMailboxStatisticsByKeywordsType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindMailboxStatisticsByKeywordsType.php118
1 files changed, 118 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindMailboxStatisticsByKeywordsType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindMailboxStatisticsByKeywordsType.php
new file mode 100644
index 00000000..65154d09
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindMailboxStatisticsByKeywordsType.php
@@ -0,0 +1,118 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Request\FindMailboxStatisticsByKeywordsType.
+ */
+
+namespace jamesiarmes\PhpEws\Request;
+
+/**
+ * Defines a request to search for mailbox statistics by keyword.
+ *
+ * @package php-ews\Request
+ */
+class FindMailboxStatisticsByKeywordsType extends BaseRequestType
+{
+ /**
+ * Specifies the date that the message was sent.Specifies an array of
+ * recipients of a message.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @todo Make a DateTime object.
+ */
+ public $FromDate;
+
+ /**
+ * Specifies whether to include the personal archive in the search.
+ *
+ * @since Exchange 2013
+ *
+ * @var boolean
+ */
+ public $IncludePersonalArchive;
+
+ /**
+ * Specifies whether to include items that cannot be searched.
+ *
+ * @since Exchange 2013
+ *
+ * @var boolean
+ */
+ public $IncludeUnsearchableItems;
+
+ /**
+ * Specifies keywords for a search.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
+ */
+ public $Keywords;
+
+ /**
+ * Contains the language used for the search query.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ */
+ public $Language;
+
+ /**
+ * Contains an array of mailboxes affected by the hold.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfUserMailboxesType
+ */
+ public $Mailboxes;
+
+ /**
+ * Specifies an array of messages to search.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfSearchItemKindsType
+ */
+ public $MessageTypes;
+
+ /**
+ * Specifies an array of recipients of a message.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfSmtpAddressType
+ */
+ public $Recipients;
+
+ /**
+ * Specifies whether to search in deleted items.
+ *
+ * @since Exchange 2013
+ *
+ * @var boolean
+ */
+ public $SearchDumpster;
+
+ /**
+ * Specifies an array of SMTP addresses.
+ *
+ * @since Exchange 2013
+ *
+ * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfSmtpAddressType
+ */
+ public $Senders;
+
+ /**
+ * Specifies the date that the message was received.
+ *
+ * @since Exchange 2013
+ *
+ * @var string
+ *
+ * @todo Make a DateTime object.
+ */
+ public $ToDate;
+}