1 | <?php |
||
15 | class OofState extends DataType |
||
16 | { |
||
17 | /** |
||
18 | * The user's OOF setting is currently disabled. |
||
19 | * |
||
20 | * @since Exchange 2007 |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | const DISABLED = 'Disabled'; |
||
25 | /** |
||
26 | * The user's OOF setting is currently enabled. |
||
27 | * |
||
28 | * @since Exchange 2007 |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | const ENABLED = 'Enabled'; |
||
33 | /** |
||
34 | * The user's OOF setting is scheduled to start at a specific date and end |
||
35 | * at another specific date. |
||
36 | * |
||
37 | * @since Exchange 2007 |
||
38 | * |
||
39 | * @var string |
||
40 | */ |
||
41 | const SCHEDULED = 'Scheduled'; |
||
42 | /** |
||
43 | * Element value. |
||
44 | * |
||
45 | * @var string |
||
46 | */ |
||
47 | public $_; |
||
48 | /** |
||
49 | * Returns the value of this object as a string. |
||
50 | * |
||
51 | * @return string |
||
52 | */ |
||
53 | public function __toString() |
||
57 | } |