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