summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/NotificationType.php
blob: fa677fd9032edba5044b61019756de277ed2db5e (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\NotificationType.
 */

namespace jamesiarmes\PhpEws\Type;

use \jamesiarmes\PhpEws\Type;

/**
 * Contains information about the subscription and the events that have occurred
 * since the last notification.
 *
 * @package php-ews\Type
 */
class NotificationType extends Type
{
    /**
     * Represents an event in which an item or folder is copied.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\MovedCopiedEventType
     */
    public $CopiedEvent;

    /**
     * Represents an event in which an item or folder is created.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\BaseObjectChangedEventType
     */
    public $CreatedEvent;

    /**
     * Represents an event in which an item or folder is deleted.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\BaseObjectChangedEventType
     */
    public $DeletedEvent;

    /**
     * Represents an event in which an item’s free/busy time has changed.
     *
     * @since Exchange 2010
     *
     * @var \jamesiarmes\PhpEws\Type\BaseObjectChangedEventType
     */
    public $FreeBusyChangedEvent;

    /**
     * Represents an event in which an item or folder is modified.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\ModifiedEventType
     */
    public $ModifiedEvent;

    /**
     * Indicates whether there are more events in the queue to be delivered to
     * the client.
     *
     * @since Exchange 2007
     *
     * @var boolean
     */
    public $MoreEvents;

    /**
     * Represents an event in which an item or folder is moved from one parent
     * folder to another parent folder.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\MovedCopiedEventType
     */
    public $MovedEvent;

    /**
     * Represents an event that is triggered by a new mail item in a mailbox.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\BaseObjectChangedEventType
     */
    public $NewMailEvent;

    /**
     * Represents the watermark of the latest event that was successfully
     * communicated to the client for the subscription.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $PreviousWatermark;

    /**
     * Represents a notification that no new activity has occurred in the
     * mailbox.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\BaseNotificationEventType
     */
    public $StatusEvent;

    /**
     * Represents the identifier for a subscription.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $SubscriptionId;
}