summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetSearchableMailboxesType.php
blob: a48d24fbc576d5bfa7bc04dd3decaa97c3ae76c1 (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
33
<?php
/**
 * Contains \jamesiarmes\PhpEws\Request\GetSearchableMailboxesType.
 */

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to get a list of mailboxes that the client has permission
 * to perform an eDiscovery search on.
 *
 * @package php-ews\Request
 */
class GetSearchableMailboxesType extends BaseRequestType
{
    /**
     * Indicates whether to expand the membership of the group.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $ExpandGroupMembership;

    /**
     * Contains the query string to filter the mailboxes to be returned.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $SearchFilter;
}