summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetDiscoverySearchConfigurationType.php
blob: 944bc0db42b927b1ff9ca7a1570b430452969e90 (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
34
35
36
37
38
39
40
41
42
<?php
/**
 * Contains \jamesiarmes\PhpEws\Request\GetDiscoverySearchConfigurationType.
 */

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to retrieve the eDiscovery search configuration.
 *
 * @package php-ews\Request
 */
class GetDiscoverySearchConfigurationType extends BaseRequestType
{
    /**
     * Contains a Boolean value that indicates whether to expand the membership
     * of the group returned from a GetSearchableMailboxes request.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $ExpandGroupMembership;

    /**
     * Specifies whether to include the in-place hold configuration.
     *
     * @since Exchange 2013
     *
     * @var boolean
     */
    public $InPlaceHoldConfigurationOnly;

    /**
     * Specifies the identifier of the search.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    public $SearchId;
}