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

namespace jamesiarmes\PhpEws\Enumeration;

/**
 * Represents the permission level that a user has on a Calendar folder.
 *
 * @package php-ews\Enumeration
 */
class CalendarPermissionLevelType extends PermissionLevelType
{
    /**
     * Indicates that the user can view only free/busy time within the calendar.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const FREE_BUSY_ONLY = 'FreeBusyTimeOnly';

    /**
     * Indicates that the user can view free/busy time within the calendar and
     * the subject and location of appointments.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     */
    const FREE_BUSY_SUBJECT_AND_LOCATION = 'FreeBusyTimeAndSubjectAndLocation';
}