blob: baff097e359bef68ba0f74ae1c4f57386f9b2412 (
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
47
48
49
50
51
52
53
|
<?php
/**
* Contains \jamesiarmes\PhpEws\Enumeration\SuggestionQuality.
*/
namespace jamesiarmes\PhpEws\Enumeration;
use \jamesiarmes\PhpEws\Enumeration;
/**
* Represents the quality of the day for containing quality suggested meeting
* times.
*
* @package php-ews\Enumeration
*/
class SuggestionQuality extends Enumeration
{
/**
* Indicates that the suggested meeting time is excellent.
*
* @since Exchange 2007
*
* @var string
*/
const EXCELLENT = 'Excellent';
/**
* Indicates that the suggested meeting time is fair.
*
* @since Exchange 2007
*
* @var string
*/
const FAIR = 'Fair';
/**
* Indicates that the suggested meeting time is good.
*
* @since Exchange 2007
*
* @var string
*/
const GOOD = 'Good';
/**
* Indicates that the suggested meeting time is poor.
*
* @since Exchange 2007
*
* @var string
*/
const POOR = 'Poor';
}
|