summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/CalendarPermissionReadAccessType.php
blob: 4d6317e6a236b8939f346024b293b3d969d658f0 (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
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\CalendarPermissionReadAccessType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

/**
 * Indicates whether a user has permission to read items within a Calendar
 * folder.
 *
 * @package php-ews\Enumeration
 */
class CalendarPermissionReadAccessType extends PermissionReadAccessType
{
    /**
     * Indicates that the user has permission to view only free/busy time in the\
     * calendar.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const TIME_ONLY = 'TimeOnly';

    /**
     * Indicates that the user has permission to view free/busy time in the
     * calendar and the subject and location of appointments.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const TIME_SUBJECT_AND_LOCATION = 'TimeAndSubjectAndLocation';
}