summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/GetDelegateType.php
blob: 2d2a1dc9e0b3e8217e2a6f6224aba62ea9665d02 (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\GetDelegateType.
 */

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a request to get information about delegates to a mailbox.
 *
 * @package php-ews\Request
 */
class GetDelegateType extends BaseDelegateType
{
    /**
     * Indicates whether the response contains permission settings for each
     * delegate user.
     *
     * @since Exchange 2007 SP1
     *
     * @var boolean
     */
    public $IncludePermissions;

    /**
     * Contains an array of delegate users to get from a principal's mailbox.
     *
     * @since Exchange 2007 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfUserIdType
     */
    public $UserIds;
}