1 | <?php |
||
13 | class SuggestionQuality extends DataType |
||
14 | { |
||
15 | /** |
||
16 | * Indicates that the suggested meeting time is excellent. |
||
17 | * |
||
18 | * @since Exchange 2007 |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | const EXCELLENT = 'Excellent'; |
||
23 | /** |
||
24 | * Indicates that the suggested meeting time is fair. |
||
25 | * |
||
26 | * @since Exchange 2007 |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | const FAIR = 'Fair'; |
||
31 | /** |
||
32 | * Indicates that the suggested meeting time is good. |
||
33 | * |
||
34 | * @since Exchange 2007 |
||
35 | * |
||
36 | * @var string |
||
37 | */ |
||
38 | const GOOD = 'Good'; |
||
39 | /** |
||
40 | * Indicates that the suggested meeting time is poor. |
||
41 | * |
||
42 | * @since Exchange 2007 |
||
43 | * |
||
44 | * @var string |
||
45 | */ |
||
46 | const POOR = 'Poor'; |
||
47 | /** |
||
48 | * Element value. |
||
49 | * |
||
50 | * @var string |
||
51 | */ |
||
52 | public $_; |
||
53 | /** |
||
54 | * Returns the value of this object as a string. |
||
55 | * |
||
56 | * @return string |
||
57 | */ |
||
58 | public function __toString() |
||
62 | } |