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

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines the arguments used to set a mailbox user's Out of Office (OOF)
 * settings.
 *
 * @package php-ews\Request
 */
class SetUserOofSettingsRequest extends BaseRequestType
{
    /**
     * Identifies the mailbox user for a SetUserOofSettings or
     * GetUserOofSettings request.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\EmailAddressType
     */
    public $Mailbox;

    /**
     * Specifies the OOF settings.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\UserOofSettings
     */
    public $UserOofSettings;
}