forked from microsoftgraph/msgraph-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectRoutingLogRow.php
More file actions
634 lines (609 loc) · 17.2 KB
/
Copy pathDirectRoutingLogRow.php
File metadata and controls
634 lines (609 loc) · 17.2 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
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* DirectRoutingLogRow File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\CallRecords\Model;
/**
* DirectRoutingLogRow class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class DirectRoutingLogRow extends \Microsoft\Graph\Model\Entity
{
/**
* Gets the calleeNumber
* Number of the user or bot who received the call. E.164 format, but may include other data.
*
* @return string|null The calleeNumber
*/
public function getCalleeNumber()
{
if (array_key_exists("calleeNumber", $this->_propDict)) {
return $this->_propDict["calleeNumber"];
} else {
return null;
}
}
/**
* Sets the calleeNumber
* Number of the user or bot who received the call. E.164 format, but may include other data.
*
* @param string $val The value of the calleeNumber
*
* @return DirectRoutingLogRow
*/
public function setCalleeNumber($val)
{
$this->_propDict["calleeNumber"] = $val;
return $this;
}
/**
* Gets the callEndSubReason
* In addition to the SIP codes, Microsoft has own subcodes that indicate the specific issue.
*
* @return int|null The callEndSubReason
*/
public function getCallEndSubReason()
{
if (array_key_exists("callEndSubReason", $this->_propDict)) {
return $this->_propDict["callEndSubReason"];
} else {
return null;
}
}
/**
* Sets the callEndSubReason
* In addition to the SIP codes, Microsoft has own subcodes that indicate the specific issue.
*
* @param int $val The value of the callEndSubReason
*
* @return DirectRoutingLogRow
*/
public function setCallEndSubReason($val)
{
$this->_propDict["callEndSubReason"] = $val;
return $this;
}
/**
* Gets the callerNumber
* Number of the user or bot who made the call. E.164 format, but may include other data.
*
* @return string|null The callerNumber
*/
public function getCallerNumber()
{
if (array_key_exists("callerNumber", $this->_propDict)) {
return $this->_propDict["callerNumber"];
} else {
return null;
}
}
/**
* Sets the callerNumber
* Number of the user or bot who made the call. E.164 format, but may include other data.
*
* @param string $val The value of the callerNumber
*
* @return DirectRoutingLogRow
*/
public function setCallerNumber($val)
{
$this->_propDict["callerNumber"] = $val;
return $this;
}
/**
* Gets the callType
* Call type and direction.
*
* @return string|null The callType
*/
public function getCallType()
{
if (array_key_exists("callType", $this->_propDict)) {
return $this->_propDict["callType"];
} else {
return null;
}
}
/**
* Sets the callType
* Call type and direction.
*
* @param string $val The value of the callType
*
* @return DirectRoutingLogRow
*/
public function setCallType($val)
{
$this->_propDict["callType"] = $val;
return $this;
}
/**
* Gets the correlationId
* Identifier for the call that you can use when calling Microsoft Support. GUID.
*
* @return string|null The correlationId
*/
public function getCorrelationId()
{
if (array_key_exists("correlationId", $this->_propDict)) {
return $this->_propDict["correlationId"];
} else {
return null;
}
}
/**
* Sets the correlationId
* Identifier for the call that you can use when calling Microsoft Support. GUID.
*
* @param string $val The value of the correlationId
*
* @return DirectRoutingLogRow
*/
public function setCorrelationId($val)
{
$this->_propDict["correlationId"] = $val;
return $this;
}
/**
* Gets the duration
* Duration of the call in seconds.
*
* @return int|null The duration
*/
public function getDuration()
{
if (array_key_exists("duration", $this->_propDict)) {
return $this->_propDict["duration"];
} else {
return null;
}
}
/**
* Sets the duration
* Duration of the call in seconds.
*
* @param int $val The value of the duration
*
* @return DirectRoutingLogRow
*/
public function setDuration($val)
{
$this->_propDict["duration"] = $val;
return $this;
}
/**
* Gets the endDateTime
* Only exists for successful (fully established) calls. Time when call ended.
*
* @return \DateTime|null The endDateTime
*/
public function getEndDateTime()
{
if (array_key_exists("endDateTime", $this->_propDict)) {
if (is_a($this->_propDict["endDateTime"], "\DateTime") || is_null($this->_propDict["endDateTime"])) {
return $this->_propDict["endDateTime"];
} else {
$this->_propDict["endDateTime"] = new \DateTime($this->_propDict["endDateTime"]);
return $this->_propDict["endDateTime"];
}
}
return null;
}
/**
* Sets the endDateTime
* Only exists for successful (fully established) calls. Time when call ended.
*
* @param \DateTime $val The value to assign to the endDateTime
*
* @return DirectRoutingLogRow The DirectRoutingLogRow
*/
public function setEndDateTime($val)
{
$this->_propDict["endDateTime"] = $val;
return $this;
}
/**
* Gets the failureDateTime
* Only exists for failed (not fully established) calls.
*
* @return \DateTime|null The failureDateTime
*/
public function getFailureDateTime()
{
if (array_key_exists("failureDateTime", $this->_propDict)) {
if (is_a($this->_propDict["failureDateTime"], "\DateTime") || is_null($this->_propDict["failureDateTime"])) {
return $this->_propDict["failureDateTime"];
} else {
$this->_propDict["failureDateTime"] = new \DateTime($this->_propDict["failureDateTime"]);
return $this->_propDict["failureDateTime"];
}
}
return null;
}
/**
* Sets the failureDateTime
* Only exists for failed (not fully established) calls.
*
* @param \DateTime $val The value to assign to the failureDateTime
*
* @return DirectRoutingLogRow The DirectRoutingLogRow
*/
public function setFailureDateTime($val)
{
$this->_propDict["failureDateTime"] = $val;
return $this;
}
/**
* Gets the finalSipCode
* The code with which the call ended, see RFC 3261.
*
* @return int|null The finalSipCode
*/
public function getFinalSipCode()
{
if (array_key_exists("finalSipCode", $this->_propDict)) {
return $this->_propDict["finalSipCode"];
} else {
return null;
}
}
/**
* Sets the finalSipCode
* The code with which the call ended, see RFC 3261.
*
* @param int $val The value of the finalSipCode
*
* @return DirectRoutingLogRow
*/
public function setFinalSipCode($val)
{
$this->_propDict["finalSipCode"] = $val;
return $this;
}
/**
* Gets the finalSipCodePhrase
* Description of the SIP code and Microsoft subcode.
*
* @return string|null The finalSipCodePhrase
*/
public function getFinalSipCodePhrase()
{
if (array_key_exists("finalSipCodePhrase", $this->_propDict)) {
return $this->_propDict["finalSipCodePhrase"];
} else {
return null;
}
}
/**
* Sets the finalSipCodePhrase
* Description of the SIP code and Microsoft subcode.
*
* @param string $val The value of the finalSipCodePhrase
*
* @return DirectRoutingLogRow
*/
public function setFinalSipCodePhrase($val)
{
$this->_propDict["finalSipCodePhrase"] = $val;
return $this;
}
/**
* Gets the id
* Unique call identifier. GUID.
*
* @return string|null The id
*/
public function getId()
{
if (array_key_exists("id", $this->_propDict)) {
return $this->_propDict["id"];
} else {
return null;
}
}
/**
* Sets the id
* Unique call identifier. GUID.
*
* @param string $val The value of the id
*
* @return DirectRoutingLogRow
*/
public function setId($val)
{
$this->_propDict["id"] = $val;
return $this;
}
/**
* Gets the inviteDateTime
* When the initial invite was sent.
*
* @return \DateTime|null The inviteDateTime
*/
public function getInviteDateTime()
{
if (array_key_exists("inviteDateTime", $this->_propDict)) {
if (is_a($this->_propDict["inviteDateTime"], "\DateTime") || is_null($this->_propDict["inviteDateTime"])) {
return $this->_propDict["inviteDateTime"];
} else {
$this->_propDict["inviteDateTime"] = new \DateTime($this->_propDict["inviteDateTime"]);
return $this->_propDict["inviteDateTime"];
}
}
return null;
}
/**
* Sets the inviteDateTime
* When the initial invite was sent.
*
* @param \DateTime $val The value to assign to the inviteDateTime
*
* @return DirectRoutingLogRow The DirectRoutingLogRow
*/
public function setInviteDateTime($val)
{
$this->_propDict["inviteDateTime"] = $val;
return $this;
}
/**
* Gets the mediaBypassEnabled
* Indicates if the trunk was enabled for media bypass or not.
*
* @return bool|null The mediaBypassEnabled
*/
public function getMediaBypassEnabled()
{
if (array_key_exists("mediaBypassEnabled", $this->_propDict)) {
return $this->_propDict["mediaBypassEnabled"];
} else {
return null;
}
}
/**
* Sets the mediaBypassEnabled
* Indicates if the trunk was enabled for media bypass or not.
*
* @param bool $val The value of the mediaBypassEnabled
*
* @return DirectRoutingLogRow
*/
public function setMediaBypassEnabled($val)
{
$this->_propDict["mediaBypassEnabled"] = $val;
return $this;
}
/**
* Gets the mediaPathLocation
* The datacenter used for media path in nonbypass call.
*
* @return string|null The mediaPathLocation
*/
public function getMediaPathLocation()
{
if (array_key_exists("mediaPathLocation", $this->_propDict)) {
return $this->_propDict["mediaPathLocation"];
} else {
return null;
}
}
/**
* Sets the mediaPathLocation
* The datacenter used for media path in nonbypass call.
*
* @param string $val The value of the mediaPathLocation
*
* @return DirectRoutingLogRow
*/
public function setMediaPathLocation($val)
{
$this->_propDict["mediaPathLocation"] = $val;
return $this;
}
/**
* Gets the signalingLocation
* The datacenter used for signaling for both bypass and nonbypass calls.
*
* @return string|null The signalingLocation
*/
public function getSignalingLocation()
{
if (array_key_exists("signalingLocation", $this->_propDict)) {
return $this->_propDict["signalingLocation"];
} else {
return null;
}
}
/**
* Sets the signalingLocation
* The datacenter used for signaling for both bypass and nonbypass calls.
*
* @param string $val The value of the signalingLocation
*
* @return DirectRoutingLogRow
*/
public function setSignalingLocation($val)
{
$this->_propDict["signalingLocation"] = $val;
return $this;
}
/**
* Gets the startDateTime
* Call start time.For failed and unanswered calls, this can be equal to invite or failure time.
*
* @return \DateTime|null The startDateTime
*/
public function getStartDateTime()
{
if (array_key_exists("startDateTime", $this->_propDict)) {
if (is_a($this->_propDict["startDateTime"], "\DateTime") || is_null($this->_propDict["startDateTime"])) {
return $this->_propDict["startDateTime"];
} else {
$this->_propDict["startDateTime"] = new \DateTime($this->_propDict["startDateTime"]);
return $this->_propDict["startDateTime"];
}
}
return null;
}
/**
* Sets the startDateTime
* Call start time.For failed and unanswered calls, this can be equal to invite or failure time.
*
* @param \DateTime $val The value to assign to the startDateTime
*
* @return DirectRoutingLogRow The DirectRoutingLogRow
*/
public function setStartDateTime($val)
{
$this->_propDict["startDateTime"] = $val;
return $this;
}
/**
* Gets the successfulCall
* Success or attempt.
*
* @return bool|null The successfulCall
*/
public function getSuccessfulCall()
{
if (array_key_exists("successfulCall", $this->_propDict)) {
return $this->_propDict["successfulCall"];
} else {
return null;
}
}
/**
* Sets the successfulCall
* Success or attempt.
*
* @param bool $val The value of the successfulCall
*
* @return DirectRoutingLogRow
*/
public function setSuccessfulCall($val)
{
$this->_propDict["successfulCall"] = $val;
return $this;
}
/**
* Gets the trunkFullyQualifiedDomainName
* Fully qualified domain name of the session border controller.
*
* @return string|null The trunkFullyQualifiedDomainName
*/
public function getTrunkFullyQualifiedDomainName()
{
if (array_key_exists("trunkFullyQualifiedDomainName", $this->_propDict)) {
return $this->_propDict["trunkFullyQualifiedDomainName"];
} else {
return null;
}
}
/**
* Sets the trunkFullyQualifiedDomainName
* Fully qualified domain name of the session border controller.
*
* @param string $val The value of the trunkFullyQualifiedDomainName
*
* @return DirectRoutingLogRow
*/
public function setTrunkFullyQualifiedDomainName($val)
{
$this->_propDict["trunkFullyQualifiedDomainName"] = $val;
return $this;
}
/**
* Gets the userDisplayName
* Display name of the user.
*
* @return string|null The userDisplayName
*/
public function getUserDisplayName()
{
if (array_key_exists("userDisplayName", $this->_propDict)) {
return $this->_propDict["userDisplayName"];
} else {
return null;
}
}
/**
* Sets the userDisplayName
* Display name of the user.
*
* @param string $val The value of the userDisplayName
*
* @return DirectRoutingLogRow
*/
public function setUserDisplayName($val)
{
$this->_propDict["userDisplayName"] = $val;
return $this;
}
/**
* Gets the userId
* Calling user's ID in Graph. This and other user info will be null/empty for bot call types. GUID.
*
* @return string|null The userId
*/
public function getUserId()
{
if (array_key_exists("userId", $this->_propDict)) {
return $this->_propDict["userId"];
} else {
return null;
}
}
/**
* Sets the userId
* Calling user's ID in Graph. This and other user info will be null/empty for bot call types. GUID.
*
* @param string $val The value of the userId
*
* @return DirectRoutingLogRow
*/
public function setUserId($val)
{
$this->_propDict["userId"] = $val;
return $this;
}
/**
* Gets the userPrincipalName
* UserPrincipalName (sign-in name) in Azure Active Directory. This is usually the same as user's SIP Address, and can be same as user's e-mail address.
*
* @return string|null The userPrincipalName
*/
public function getUserPrincipalName()
{
if (array_key_exists("userPrincipalName", $this->_propDict)) {
return $this->_propDict["userPrincipalName"];
} else {
return null;
}
}
/**
* Sets the userPrincipalName
* UserPrincipalName (sign-in name) in Azure Active Directory. This is usually the same as user's SIP Address, and can be same as user's e-mail address.
*
* @param string $val The value of the userPrincipalName
*
* @return DirectRoutingLogRow
*/
public function setUserPrincipalName($val)
{
$this->_propDict["userPrincipalName"] = $val;
return $this;
}
}