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

namespace jamesiarmes\PhpEws\Type;

use \jamesiarmes\PhpEws\Type;

/**
 * Represents the client's rights based on the permission settings for an item
 * or folder.
 *
 * @package php-ews\Type
 */
class EffectiveRightsType extends Type
{
    /**
     * Indicates whether a client can create an associated contents table.
     *
     * This property is only used on folder objects.
     *
     * @since Exchange 2007 SP1
     *
     * @var boolean
     */
    public $CreateAssociated;

    /**
     * Indicates whether a client can create a contents table.
     *
     * This property is only used on folder objects.
     *
     * @since Exchange 2007 SP1
     *
     * @var boolean
     */
    public $CreateContents;

    /**
     * Indicates whether a client can create a hierarchy table.
     *
     * This property is only used on folder objects.
     *
     * @since Exchange 2007 SP1
     *
     * @var boolean
     */
    public $CreateHierarchy;

    /**
     * Indicates whether a client can delete a folder or item.
     *
     * @since Exchange 2007 SP1
     *
     * @var boolean
     */
    public $Delete;

    /**
     * Indicates whether a client can modify a folder or item.
     *
     * @since Exchange 2007 SP1
     *
     * @var boolean
     */
    public $Modify;

    /**
     * Indicates whether a client can read a folder or item.
     *
     * @since Exchange 2007 SP1
     *
     * @var boolean
     */
    public $Read;

    /**
     * Indicates whether a private item can be viewed.
     *
     * @since Exchange 2010
     *
     * @var boolean
     */
    public $ViewPrivateItems;
}