forked from microsoftgraph/msgraph-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessage.php
More file actions
790 lines (735 loc) · 17.7 KB
/
Copy pathMessage.php
File metadata and controls
790 lines (735 loc) · 17.7 KB
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* Message File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version GIT: 0.1.0
* @link https://graph.microsoft.io/
*/
namespace Microsoft\Graph\Model;
/**
* Message class
*
* @category Model
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version Release: 0.1.0
* @link https://graph.microsoft.io/
*/
class Message extends OutlookItem
{
/**
* Gets the receivedDateTime
*
* @return \DateTime The receivedDateTime
*/
public function getReceivedDateTime()
{
if (array_key_exists("receivedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["receivedDateTime"], "\DateTime")) {
return $this->_propDict["receivedDateTime"];
} else {
$this->_propDict["receivedDateTime"] = new \DateTime($this->_propDict["receivedDateTime"]);
return $this->_propDict["receivedDateTime"];
}
}
return null;
}
/**
* Sets the receivedDateTime
*
* @param string $val The receivedDateTime
*
* @return Message
*/
public function setReceivedDateTime($val)
{
$this->_propDict["receivedDateTime"] = $val;
return $this;
}
/**
* Gets the sentDateTime
*
* @return \DateTime The sentDateTime
*/
public function getSentDateTime()
{
if (array_key_exists("sentDateTime", $this->_propDict)) {
if (is_a($this->_propDict["sentDateTime"], "\DateTime")) {
return $this->_propDict["sentDateTime"];
} else {
$this->_propDict["sentDateTime"] = new \DateTime($this->_propDict["sentDateTime"]);
return $this->_propDict["sentDateTime"];
}
}
return null;
}
/**
* Sets the sentDateTime
*
* @param string $val The sentDateTime
*
* @return Message
*/
public function setSentDateTime($val)
{
$this->_propDict["sentDateTime"] = $val;
return $this;
}
/**
* Gets the hasAttachments
*
* @return bool The hasAttachments
*/
public function getHasAttachments()
{
if (array_key_exists("hasAttachments", $this->_propDict)) {
return $this->_propDict["hasAttachments"];
} else {
return null;
}
}
/**
* Sets the hasAttachments
*
* @param bool $val The hasAttachments
*
* @return Message
*/
public function setHasAttachments($val)
{
$this->_propDict["hasAttachments"] = boolval($val);
return $this;
}
/**
* Gets the internetMessageId
*
* @return string The internetMessageId
*/
public function getInternetMessageId()
{
if (array_key_exists("internetMessageId", $this->_propDict)) {
return $this->_propDict["internetMessageId"];
} else {
return null;
}
}
/**
* Sets the internetMessageId
*
* @param string $val The internetMessageId
*
* @return Message
*/
public function setInternetMessageId($val)
{
$this->_propDict["internetMessageId"] = $val;
return $this;
}
/**
* Gets the subject
*
* @return string The subject
*/
public function getSubject()
{
if (array_key_exists("subject", $this->_propDict)) {
return $this->_propDict["subject"];
} else {
return null;
}
}
/**
* Sets the subject
*
* @param string $val The subject
*
* @return Message
*/
public function setSubject($val)
{
$this->_propDict["subject"] = $val;
return $this;
}
/**
* Gets the body
*
* @return ItemBody The body
*/
public function getBody()
{
if (array_key_exists("body", $this->_propDict)) {
if (is_a($this->_propDict["body"], "ItemBody")) {
return $this->_propDict["body"];
} else {
$this->_propDict["body"] = new ItemBody($this->_propDict["body"]);
return $this->_propDict["body"];
}
}
return null;
}
/**
* Sets the body
*
* @param string $val The body
*
* @return Message
*/
public function setBody($val)
{
$this->_propDict["body"] = $val;
return $this;
}
/**
* Gets the bodyPreview
*
* @return string The bodyPreview
*/
public function getBodyPreview()
{
if (array_key_exists("bodyPreview", $this->_propDict)) {
return $this->_propDict["bodyPreview"];
} else {
return null;
}
}
/**
* Sets the bodyPreview
*
* @param string $val The bodyPreview
*
* @return Message
*/
public function setBodyPreview($val)
{
$this->_propDict["bodyPreview"] = $val;
return $this;
}
/**
* Gets the importance
*
* @return Importance The importance
*/
public function getImportance()
{
if (array_key_exists("importance", $this->_propDict)) {
if (is_a($this->_propDict["importance"], "Importance")) {
return $this->_propDict["importance"];
} else {
$this->_propDict["importance"] = new Importance($this->_propDict["importance"]);
return $this->_propDict["importance"];
}
}
return null;
}
/**
* Sets the importance
*
* @param string $val The importance
*
* @return Message
*/
public function setImportance($val)
{
$this->_propDict["importance"] = $val;
return $this;
}
/**
* Gets the parentFolderId
*
* @return string The parentFolderId
*/
public function getParentFolderId()
{
if (array_key_exists("parentFolderId", $this->_propDict)) {
return $this->_propDict["parentFolderId"];
} else {
return null;
}
}
/**
* Sets the parentFolderId
*
* @param string $val The parentFolderId
*
* @return Message
*/
public function setParentFolderId($val)
{
$this->_propDict["parentFolderId"] = $val;
return $this;
}
/**
* Gets the sender
*
* @return Recipient The sender
*/
public function getSender()
{
if (array_key_exists("sender", $this->_propDict)) {
if (is_a($this->_propDict["sender"], "Recipient")) {
return $this->_propDict["sender"];
} else {
$this->_propDict["sender"] = new Recipient($this->_propDict["sender"]);
return $this->_propDict["sender"];
}
}
return null;
}
/**
* Sets the sender
*
* @param string $val The sender
*
* @return Message
*/
public function setSender($val)
{
$this->_propDict["sender"] = $val;
return $this;
}
/**
* Gets the from
*
* @return Recipient The from
*/
public function getFrom()
{
if (array_key_exists("from", $this->_propDict)) {
if (is_a($this->_propDict["from"], "Recipient")) {
return $this->_propDict["from"];
} else {
$this->_propDict["from"] = new Recipient($this->_propDict["from"]);
return $this->_propDict["from"];
}
}
return null;
}
/**
* Sets the from
*
* @param string $val The from
*
* @return Message
*/
public function setFrom($val)
{
$this->_propDict["from"] = $val;
return $this;
}
/**
* Gets the toRecipients
*
* @return array The toRecipients
*/
public function getToRecipients()
{
if (array_key_exists("toRecipients", $this->_propDict)) {
return $this->_propDict["toRecipients"];
} else {
return null;
}
}
/**
* Sets the toRecipients
*
* @param string $val The toRecipients
*
* @return Message
*/
public function setToRecipients($val)
{
$this->_propDict["toRecipients"] = $val;
return $this;
}
/**
* Gets the ccRecipients
*
* @return array The ccRecipients
*/
public function getCcRecipients()
{
if (array_key_exists("ccRecipients", $this->_propDict)) {
return $this->_propDict["ccRecipients"];
} else {
return null;
}
}
/**
* Sets the ccRecipients
*
* @param string $val The ccRecipients
*
* @return Message
*/
public function setCcRecipients($val)
{
$this->_propDict["ccRecipients"] = $val;
return $this;
}
/**
* Gets the bccRecipients
*
* @return array The bccRecipients
*/
public function getBccRecipients()
{
if (array_key_exists("bccRecipients", $this->_propDict)) {
return $this->_propDict["bccRecipients"];
} else {
return null;
}
}
/**
* Sets the bccRecipients
*
* @param string $val The bccRecipients
*
* @return Message
*/
public function setBccRecipients($val)
{
$this->_propDict["bccRecipients"] = $val;
return $this;
}
/**
* Gets the replyTo
*
* @return array The replyTo
*/
public function getReplyTo()
{
if (array_key_exists("replyTo", $this->_propDict)) {
return $this->_propDict["replyTo"];
} else {
return null;
}
}
/**
* Sets the replyTo
*
* @param string $val The replyTo
*
* @return Message
*/
public function setReplyTo($val)
{
$this->_propDict["replyTo"] = $val;
return $this;
}
/**
* Gets the conversationId
*
* @return string The conversationId
*/
public function getConversationId()
{
if (array_key_exists("conversationId", $this->_propDict)) {
return $this->_propDict["conversationId"];
} else {
return null;
}
}
/**
* Sets the conversationId
*
* @param string $val The conversationId
*
* @return Message
*/
public function setConversationId($val)
{
$this->_propDict["conversationId"] = $val;
return $this;
}
/**
* Gets the uniqueBody
*
* @return ItemBody The uniqueBody
*/
public function getUniqueBody()
{
if (array_key_exists("uniqueBody", $this->_propDict)) {
if (is_a($this->_propDict["uniqueBody"], "ItemBody")) {
return $this->_propDict["uniqueBody"];
} else {
$this->_propDict["uniqueBody"] = new ItemBody($this->_propDict["uniqueBody"]);
return $this->_propDict["uniqueBody"];
}
}
return null;
}
/**
* Sets the uniqueBody
*
* @param string $val The uniqueBody
*
* @return Message
*/
public function setUniqueBody($val)
{
$this->_propDict["uniqueBody"] = $val;
return $this;
}
/**
* Gets the isDeliveryReceiptRequested
*
* @return bool The isDeliveryReceiptRequested
*/
public function getIsDeliveryReceiptRequested()
{
if (array_key_exists("isDeliveryReceiptRequested", $this->_propDict)) {
return $this->_propDict["isDeliveryReceiptRequested"];
} else {
return null;
}
}
/**
* Sets the isDeliveryReceiptRequested
*
* @param bool $val The isDeliveryReceiptRequested
*
* @return Message
*/
public function setIsDeliveryReceiptRequested($val)
{
$this->_propDict["isDeliveryReceiptRequested"] = boolval($val);
return $this;
}
/**
* Gets the isReadReceiptRequested
*
* @return bool The isReadReceiptRequested
*/
public function getIsReadReceiptRequested()
{
if (array_key_exists("isReadReceiptRequested", $this->_propDict)) {
return $this->_propDict["isReadReceiptRequested"];
} else {
return null;
}
}
/**
* Sets the isReadReceiptRequested
*
* @param bool $val The isReadReceiptRequested
*
* @return Message
*/
public function setIsReadReceiptRequested($val)
{
$this->_propDict["isReadReceiptRequested"] = boolval($val);
return $this;
}
/**
* Gets the isRead
*
* @return bool The isRead
*/
public function getIsRead()
{
if (array_key_exists("isRead", $this->_propDict)) {
return $this->_propDict["isRead"];
} else {
return null;
}
}
/**
* Sets the isRead
*
* @param bool $val The isRead
*
* @return Message
*/
public function setIsRead($val)
{
$this->_propDict["isRead"] = boolval($val);
return $this;
}
/**
* Gets the isDraft
*
* @return bool The isDraft
*/
public function getIsDraft()
{
if (array_key_exists("isDraft", $this->_propDict)) {
return $this->_propDict["isDraft"];
} else {
return null;
}
}
/**
* Sets the isDraft
*
* @param bool $val The isDraft
*
* @return Message
*/
public function setIsDraft($val)
{
$this->_propDict["isDraft"] = boolval($val);
return $this;
}
/**
* Gets the webLink
*
* @return string The webLink
*/
public function getWebLink()
{
if (array_key_exists("webLink", $this->_propDict)) {
return $this->_propDict["webLink"];
} else {
return null;
}
}
/**
* Sets the webLink
*
* @param string $val The webLink
*
* @return Message
*/
public function setWebLink($val)
{
$this->_propDict["webLink"] = $val;
return $this;
}
/**
* Gets the inferenceClassification
*
* @return InferenceClassificationType The inferenceClassification
*/
public function getInferenceClassification()
{
if (array_key_exists("inferenceClassification", $this->_propDict)) {
if (is_a($this->_propDict["inferenceClassification"], "InferenceClassificationType")) {
return $this->_propDict["inferenceClassification"];
} else {
$this->_propDict["inferenceClassification"] = new InferenceClassificationType($this->_propDict["inferenceClassification"]);
return $this->_propDict["inferenceClassification"];
}
}
return null;
}
/**
* Sets the inferenceClassification
*
* @param string $val The inferenceClassification
*
* @return Message
*/
public function setInferenceClassification($val)
{
$this->_propDict["inferenceClassification"] = $val;
return $this;
}
/**
* Gets the attachments
*
* @return array The attachments
*/
public function getAttachments()
{
if (array_key_exists("attachments", $this->_propDict)) {
return $this->_propDict["attachments"];
} else {
return null;
}
}
/**
* Sets the attachments
*
* @param string $val The attachments
*
* @return Message
*/
public function setAttachments($val)
{
$this->_propDict["attachments"] = $val;
return $this;
}
/**
* Gets the extensions
*
* @return array The extensions
*/
public function getExtensions()
{
if (array_key_exists("extensions", $this->_propDict)) {
return $this->_propDict["extensions"];
} else {
return null;
}
}
/**
* Sets the extensions
*
* @param string $val The extensions
*
* @return Message
*/
public function setExtensions($val)
{
$this->_propDict["extensions"] = $val;
return $this;
}
/**
* Gets the singleValueExtendedProperties
*
* @return array The singleValueExtendedProperties
*/
public function getSingleValueExtendedProperties()
{
if (array_key_exists("singleValueExtendedProperties", $this->_propDict)) {
return $this->_propDict["singleValueExtendedProperties"];
} else {
return null;
}
}
/**
* Sets the singleValueExtendedProperties
*
* @param string $val The singleValueExtendedProperties
*
* @return Message
*/
public function setSingleValueExtendedProperties($val)
{
$this->_propDict["singleValueExtendedProperties"] = $val;
return $this;
}
/**
* Gets the multiValueExtendedProperties
*
* @return array The multiValueExtendedProperties
*/
public function getMultiValueExtendedProperties()
{
if (array_key_exists("multiValueExtendedProperties", $this->_propDict)) {
return $this->_propDict["multiValueExtendedProperties"];
} else {
return null;
}
}
/**
* Sets the multiValueExtendedProperties
*
* @param string $val The multiValueExtendedProperties
*
* @return Message
*/
public function setMultiValueExtendedProperties($val)
{
$this->_propDict["multiValueExtendedProperties"] = $val;
return $this;
}
}