summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindMailboxStatisticsByKeywordsType.php
blob: 65154d09d9a764c42df1e0cacfcbe33b9e4793fe (plain) (tree)





















































































































                                                                            
<?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;
}