blob: 635e570f056806dc6095f6044b7da997ab1e5055 (
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
43
44
45
46
|
<?php
/**
* Contains \jamesiarmes\PhpEws\Response\GetUserOofSettingsResponse.
*/
namespace jamesiarmes\PhpEws\Response;
use \jamesiarmes\PhpEws\Response;
/**
* Represents the response message and the Out of Office (OOF) settings for a
* user.
*
* @package php-ews\Response
*/
class GetUserOofSettingsResponse extends Response
{
/**
* Contains a value that identifies to whom external OOF messages are sent.
*
* @since Exchange 2007
*
* @var string
*
* @see \jamesiarmes\PhpEws\Enumeration\ExternalAudience
*/
public $AllowExternalOof;
/**
* Contains the OOF settings.
*
* @since Exchange 2007
*
* @var \jamesiarmes\PhpEws\Type\UserOofSettings
*/
public $OofSettings;
/**
* Provides descriptive information about the response status.
*
* @since Exchange 2007
*
* @var \jamesiarmes\PhpEws\Response\ResponseMessageType
*/
public $ResponseMessage;
}
|