summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Response/GetSearchableMailboxesResponseMessageType.php
blob: a992cf86cfd4eda9f5753687d7a44835392fba61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
 * Contains \jamesiarmes\PhpEws\Response\GetSearchableMailboxesResponseMessageType.
 */

namespace jamesiarmes\PhpEws\Response;

/**
 * Contains the response to a GetSearchableMailboxes request.
 *
 * @package php-ews\Response
 */
class GetSearchableMailboxesResponseMessageType extends ResponseMessageType
{
    /**
     * Specifies an array of mailboxes that failed on search.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfFailedSearchMailboxesType
     */
    public $FailedMailboxes;

    /**
     * Contains an array of mailboxes.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfSearchableMailboxesType
     */
    public $SearchableMailboxes;
}