summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/DistinguishedFolderIdNameType.php
blob: 1c458e56b2f7fc8cbda9a0a71ef74ac3f5ef9a85 (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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\DistinguishedFolderIdNameType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Represents default calendar ids.
 *
 * @package php-ews\Enumeration
 */
class DistinguishedFolderIdNameType extends Enumeration
{
    /**
     * Represents the admin audit logs folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const ADMIN_AUDIT_LOGS = 'adminauditlogs';

    /**
     * Represents the archive deleted items folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ARCHIVE_DELETED = 'archivedeleteditems';

    /**
     * Represents the archive Inbox folder.
     *
     * @since Exchange 2013 CU5
     *
     * @var string
     */
    const ARCHIVE_INBOX = 'archiveinbox';

    /**
     * Represents the root archive message folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ARCHIVE_MESSAGE_ROOT = 'archivemsgfolderroot';

    /**
     * Represents the archive recoverable items deletions folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ARCHIVE_RECOVERABLE_DELETIONS = 'Archiverecoverableitemsdeletions';

    /**
     * Represents the archive recoverable items purges folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ARCHIVE_RECOVERABLE_PURGES = 'Archiverecoverableitemspurges';

    /**
     * Represents the archive recoverable items root folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ARCHIVE_RECOVERABLE_ROOT = 'archiverecoverableitemsroot';

    /**
     * Represents the archive recoverable items versions folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ARCHIVE_RECOVERABLE_VERSIONS = 'Archiverecoverableitemsversions';

    /**
     * Represents the root archive folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ARCHIVE_ROOT = 'archiveroot';

    /**
     * Represents the Calendar folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const CALENDAR = 'calendar';

    /**
     * Represents the conflicts folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const CONFLICTS = 'conflicts';

    /**
     * Represents the Contacts folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const CONTACTS = 'contacts';

    /**
     * Represents the conversation history folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const CONVERSATION_HISTORY = 'conversationhistory';

    /**
     * Represents the Deleted Items folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const DELETED = 'deleteditems';

    /**
     * Represents the directory folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const DIRECTORY = 'directory';

    /**
     * Represents the Drafts folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const DRAFTS = 'drafts';

    /**
     * Represents the Favorites folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const FAVORITES = 'favorites';

    /**
     * Represents the IM contact list folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const IM_CONTACT_LIST = 'imcontactlist';

    /**
     * Represents the Inbox folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const INBOX = 'inbox';

    /**
     * Represents the Journal folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const JOURNAL = 'journal';

    /**
     * Represents the Junk E-mail folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const JUNK = 'junkemail';

    /**
     * Represents the local failures folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const LOCAL_FAILURES = 'localfailures';

    /**
     * Represents the message folder root.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const MESSAGE_ROOT = 'msgfolderroot';

    /**
     * Represents the My Contacts folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const MY_CONTACTS = 'mycontacts';

    /**
     * Represents the Notes folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const NOTES = 'notes';

    /**
     * Represents the Outbox folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const OUTBOX = 'outbox';

    /**
     * Represents the people connect folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const PEOPLE_CONNECT = 'peopleconnect';

    /**
     * Indicates the URL of the public folders root folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const PUBLIC_FOLDERS_ROOT = 'publicfoldersroot';

    /**
     * Represents the quick contacts folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const QUICK_CONTACTS = 'quickcontacts';

    /**
     * Represents the recipient cache folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const RECIPIENT_CACHE = 'recipientcache';

    /**
     * Represents the dumpster deletions folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const RECOVERABLE_DELETIONS = 'recoverableitemsdeletions';

    /**
     * Represents the dumpster purges folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const RECOVERABLE_PURGES = 'recoverableitemspurges';

    /**
     * Represents the dumpster root folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const RECOVERABLE_ROOT = 'recoverableitemsroot';

    /**
     * Represents the dumpster versions folder.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const RECOVERABLE_VERSIONS = 'recoverableitemsversions';

    /**
     * Represents the root of the mailbox.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const ROOT = 'root';

    /**
     * Represents the Search Folders folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const SEARCH = 'searchfolders';

    /**
     * Represents the Sent Items folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const SENT = 'sentitems';

    /**
     * Represents the server failures folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const SERVER_FAILURES = 'serverfailures';

    /**
     * Represents the sync issues folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const SYNC_ISSUES = 'syncissues';

    /**
     * Represents the Tasks folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const TASKS = 'tasks';

    /**
     * Represents the todo search folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const TODO_SEARCH = 'todosearch';

    /**
     * Represents the Voice Mail folder.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const VOICE_MAIL = 'voicemail';
}