summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/CalendarPermissionType.php
blob: 6b799f0b58a74c3751e498a7434c8e6193365883 (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
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\CalendarPermissionType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Defines the access that a user has to a Calendar folder.
 *
 * @package php-ews\Type
 */
class CalendarPermissionType extends BasePermissionType
{
    /**
     * Represents the permission level that a user has on a Calendar folder.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\CalendarPermissionLevelType
     */
    public $CalendarPermissionLevel;

    /**
     * Indicates whether a user has permission to read items within a folder.
     *
     * @since Exchange 2007 SP1
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\CalendarPermissionReadAccessType
     */
    public $ReadItems;
}