summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/FreeBusyViewType.php
blob: c45b72edea4e3a621af9a4cb3814db72c0ad4187 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\FreeBusyViewType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Represents the type of free/busy information returned in the response.
 *
 * @package php-ews\Enumeration
 */
class FreeBusyViewType extends Enumeration
{
    /**
     * Represents the legacy status information: free, busy, tentative, and OOF;
     * the start/end times of the appointments; and various properties of the
     * appointment such as subject, location, and importance.
     *
     * This requested view will return the maximum amount of information for
     * which the requesting user is privileged. If merged free/busy information
     * only is available, as with requesting information for users in a
     * Microsoft Exchange Server 2003 forest, MergedOnly will be returned.
     * Otherwise, FreeBusy or Detailed will be returned.
     *
     * If Detailed is specified for a distribution list, the free/busy
     * information for the members of the list is merged, and MergedOnly is
     * returned.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const DETAILED = 'Detailed';

    /**
     * Represents all the properties in Detailed with a stream of merged
     * free/busy availability information.
     *
     * If only merged free/busy information is available, for example if the
     * mailbox exists on a computer running Exchange 2003, MergedOnly will be
     * returned. Otherwise, FreeBusyMerged or DetailedMerged will be returned.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const DETAILED_MERGED = 'DetailedMerged';

    /**
     * Represents the legacy status information: free, busy, tentative, and OOF.
     *
     * This also includes the start/end times of the appointments. This view is
     * richer than the legacy free/busy view because individual meeting start
     * and end times are provided instead of an aggregated free/busy stream.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const FREE_BUSY = 'FreeBusy';

    /**
     * Represents all the properties in FreeBusy with a stream of merged
     * free/busy availability information.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const FREE_BUSY_MERGED = 'FreeBusyMerged';

    /**
     * Represents an aggregated free/busy stream.
     *
     * In cross-forest scenarios in which the target user in one forest does not
     * have an Availability service configured, the Availability service of the
     * requester retrieves the target user’s free/busy information from the
     * free/busy public folder. Because public folders only store free/busy
     * information in merged form, MergedOnly is the only available information.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const MERGED_ONLY = 'MergedOnly';

    /**
     * This value is not valid for requests but is valid for responses.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const NONE = 'None';
}