summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ConversationType.php
blob: f37f0263edc4c98ea3a92aaac541bc37e4fcd8b6 (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\ConversationType.
 */

namespace jamesiarmes\PhpEws\Type;

use \jamesiarmes\PhpEws\Type;

/**
 * Represents a single conversation.
 *
 * @package php-ews\Type
 */
class ConversationType extends Type
{
    /**
     * Contains a collection of strings that identify the categories that are
     * applied to all conversation items in the current folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $Categories;

    /**
     * Represents the identifier of a conversation.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\Type\ItemIdType
     */
    public $ConversationId;

    /**
     * Represents the conversation topic.
     *
     * This element is read-only.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    public $ConversationTopic;

    /**
     * Contains the aggregated flag status for conversation items in the current
     * folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\FlagStatusType
     */
    public $FlagStatus;

    /**
     * Contains the category list for all conversation items in a mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $GlobalCategories;

    /**
     * Contains the aggregated flag status for all conversation items in a
     * mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\FlagStatusType
     */
    public $GlobalFlagStatus;

    /**
     * Contains a value that indicates whether at least one conversation item in
     * a mailbox has an attachment.
     *
     * @since Exchange 2010 SP1
     *
     * @var boolean
     */
    public $GlobalHasAttachments;

    /**
     * Contains the aggregated importance for all conversation items in a
     * mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\ImportanceChoicesType
     */
    public $GlobalImportance;

    /**
     * Contains a list of item classes that represents all the item classes of
     * the conversation items in a mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfItemClassType
     */
    public $GlobalItemClasses;

    /**
     * Contains the collection of item identifiers for all conversation items in
     * a mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseItemIdsType
     */
    public $GlobalItemIds;

    /**
     * Contains the delivery time of the message that was last received in this
     * conversation across all folders in the mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $GlobalLastDeliveryTime;

    /**
     * Contains the total number of conversation items in the mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var integer
     */
    public $GlobalMessageCount;

    /**
     * Contains the size of the conversation calculated from the size of all
     * conversation items in the mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var integer
     */
    public $GlobalSize;

    /**
     * Contains the recipient list of a conversation aggregated across a
     * mailbox.
     *
     * This element is read-only.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $GlobalUniqueRecipients;

    /**
     * Contains a list of all the senders of conversation items in the mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $GlobalUniqueSenders;

    /**
     * Contains a list of all the people who have sent messages that are
     * currently unread in this conversation across all folders in the mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $GlobalUniqueUnreadSenders;

    /**
     * Contains a count of all the unread conversation items in the mailbox.
     *
     * @since Exchange 2010 SP1
     *
     * @var integer
     */
    public $GlobalUnreadCount;

    /**
     * Contains a value that indicates whether at least one conversation item in
     * the current folder has an attachment.
     *
     * @since Exchange 2010 SP1
     *
     * @var boolean
     */
    public $HasAttachments;

    /**
     * Contains the aggregated importance for all conversation items in the
     * current folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\ImportanceChoicesType
     */
    public $Importance;

    /**
     * Contains a list of item classes that represents all the item classes of
     * the conversation items in the current folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfItemClassType
     */
    public $ItemClasses;

    /**
     * Contains the collection of item identifiers for all conversation items in
     * the current folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfBaseItemIdsType
     */
    public $ItemIds;

    /**
     * Contains the delivery time of the message that was last received in this
     * conversation in the current folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $LastDeliveryTime;

    /**
     * Contains the total number of conversation items in the current folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var integer
     */
    public $MessageCount;

    /**
     * Contains the conversation size calculated from the size of all
     * conversation items in the current folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var integer
     */
    public $Size;

    /**
     * Contains the recipient list of a conversation aggregated from a
     * particular folder.
     *
     * This element is read-only.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $UniqueRecipients;

    /**
     * Contains a list of all the senders of conversation items in the current
     * folder.
     *
     * This element is read-only.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $UniqueSenders;

    /**
     * Contains a list of all the people who have sent messages that are
     * currently unread in this conversation in the current folder.
     *
     * This element is read-only.
     *
     * @since Exchange 2010 SP1
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $UniqueUnreadSenders;

    /**
     * Contains the count of unread conversation items within a folder.
     *
     * @since Exchange 2010 SP1
     *
     * @var integer
     */
    public $UnreadCount;
}