1 | <?php |
||
12 | class ExternalAudience extends DataType |
||
13 | { |
||
14 | /** |
||
15 | * E-mail senders outside the mailbox user's organization who send messages |
||
16 | * to the user will receive an external OOF message response.. |
||
17 | * |
||
18 | * @since Exchange 2007 |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | const ALL = 'All'; |
||
23 | |||
24 | /** |
||
25 | * E-mail senders outside the mailbox user's organization who send messages |
||
26 | * to the user will only receive an external OOF message response if the |
||
27 | * sender is in the user's Exchange store contact list. |
||
28 | * |
||
29 | * @since Exchange 2007 |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | const KNOWN = 'Known'; |
||
34 | |||
35 | /** |
||
36 | * E-mail senders outside the mailbox user's organization who send messages |
||
37 | * to the user will not receive an external OOF message response. |
||
38 | * |
||
39 | * @since Exchange 2007 |
||
40 | * |
||
41 | * @var string |
||
42 | */ |
||
43 | const NONE = 'None'; |
||
44 | |||
45 | /** |
||
46 | * Element value. |
||
47 | * |
||
48 | * @var string |
||
49 | */ |
||
50 | public $_; |
||
51 | |||
52 | /** |
||
53 | * Returns the value of this object as a string. |
||
54 | * |
||
55 | * @return string |
||
56 | */ |
||
57 | public function __toString() |
||
61 | } |