forked from microsoftgraph/msgraph-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPstnCallLogRow.php
More file actions
695 lines (667 loc) · 19.3 KB
/
Copy pathPstnCallLogRow.php
File metadata and controls
695 lines (667 loc) · 19.3 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
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* PstnCallLogRow 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;
/**
* PstnCallLogRow 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 PstnCallLogRow extends \Microsoft\Graph\Model\Entity
{
/**
* Gets the callDurationSource
* The source of the call duration data. If the call uses a third-party telecommunications operator via the Operator Connect Program, the operator may provide their own call duration data. In this case, the property value is operator. Otherwise, the value is microsoft.
*
* @return PstnCallDurationSource|null The callDurationSource
*/
public function getCallDurationSource()
{
if (array_key_exists("callDurationSource", $this->_propDict)) {
if (is_a($this->_propDict["callDurationSource"], "\Microsoft\Graph\CallRecords\Model\PstnCallDurationSource") || is_null($this->_propDict["callDurationSource"])) {
return $this->_propDict["callDurationSource"];
} else {
$this->_propDict["callDurationSource"] = new PstnCallDurationSource($this->_propDict["callDurationSource"]);
return $this->_propDict["callDurationSource"];
}
}
return null;
}
/**
* Sets the callDurationSource
* The source of the call duration data. If the call uses a third-party telecommunications operator via the Operator Connect Program, the operator may provide their own call duration data. In this case, the property value is operator. Otherwise, the value is microsoft.
*
* @param PstnCallDurationSource $val The value to assign to the callDurationSource
*
* @return PstnCallLogRow The PstnCallLogRow
*/
public function setCallDurationSource($val)
{
$this->_propDict["callDurationSource"] = $val;
return $this;
}
/**
* Gets the calleeNumber
* Number dialed in E.164 format.
*
* @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 dialed in E.164 format.
*
* @param string $val The value of the calleeNumber
*
* @return PstnCallLogRow
*/
public function setCalleeNumber($val)
{
$this->_propDict["calleeNumber"] = $val;
return $this;
}
/**
* Gets the callerNumber
* Number that received the call for inbound calls or the number dialed for outbound calls. E.164 format.
*
* @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 that received the call for inbound calls or the number dialed for outbound calls. E.164 format.
*
* @param string $val The value of the callerNumber
*
* @return PstnCallLogRow
*/
public function setCallerNumber($val)
{
$this->_propDict["callerNumber"] = $val;
return $this;
}
/**
* Gets the callId
* Call identifier. Not guaranteed to be unique.
*
* @return string|null The callId
*/
public function getCallId()
{
if (array_key_exists("callId", $this->_propDict)) {
return $this->_propDict["callId"];
} else {
return null;
}
}
/**
* Sets the callId
* Call identifier. Not guaranteed to be unique.
*
* @param string $val The value of the callId
*
* @return PstnCallLogRow
*/
public function setCallId($val)
{
$this->_propDict["callId"] = $val;
return $this;
}
/**
* Gets the callType
* Whether the call was a PSTN outbound or inbound call and the type of call such as a call placed by a user or an audio conference.
*
* @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
* Whether the call was a PSTN outbound or inbound call and the type of call such as a call placed by a user or an audio conference.
*
* @param string $val The value of the callType
*
* @return PstnCallLogRow
*/
public function setCallType($val)
{
$this->_propDict["callType"] = $val;
return $this;
}
/**
* Gets the charge
* Amount of money or cost of the call that is charged to your account.
*
* @return \Microsoft\Graph\Model\Decimal|null The charge
*/
public function getCharge()
{
if (array_key_exists("charge", $this->_propDict)) {
if (is_a($this->_propDict["charge"], "\Microsoft\Graph\Model\Decimal") || is_null($this->_propDict["charge"])) {
return $this->_propDict["charge"];
} else {
$this->_propDict["charge"] = new \Microsoft\Graph\Model\Decimal($this->_propDict["charge"]);
return $this->_propDict["charge"];
}
}
return null;
}
/**
* Sets the charge
* Amount of money or cost of the call that is charged to your account.
*
* @param \Microsoft\Graph\Model\Decimal $val The value to assign to the charge
*
* @return PstnCallLogRow The PstnCallLogRow
*/
public function setCharge($val)
{
$this->_propDict["charge"] = $val;
return $this;
}
/**
* Gets the conferenceId
* ID of the audio conference.
*
* @return string|null The conferenceId
*/
public function getConferenceId()
{
if (array_key_exists("conferenceId", $this->_propDict)) {
return $this->_propDict["conferenceId"];
} else {
return null;
}
}
/**
* Sets the conferenceId
* ID of the audio conference.
*
* @param string $val The value of the conferenceId
*
* @return PstnCallLogRow
*/
public function setConferenceId($val)
{
$this->_propDict["conferenceId"] = $val;
return $this;
}
/**
* Gets the connectionCharge
* Connection fee price.
*
* @return \Microsoft\Graph\Model\Decimal|null The connectionCharge
*/
public function getConnectionCharge()
{
if (array_key_exists("connectionCharge", $this->_propDict)) {
if (is_a($this->_propDict["connectionCharge"], "\Microsoft\Graph\Model\Decimal") || is_null($this->_propDict["connectionCharge"])) {
return $this->_propDict["connectionCharge"];
} else {
$this->_propDict["connectionCharge"] = new \Microsoft\Graph\Model\Decimal($this->_propDict["connectionCharge"]);
return $this->_propDict["connectionCharge"];
}
}
return null;
}
/**
* Sets the connectionCharge
* Connection fee price.
*
* @param \Microsoft\Graph\Model\Decimal $val The value to assign to the connectionCharge
*
* @return PstnCallLogRow The PstnCallLogRow
*/
public function setConnectionCharge($val)
{
$this->_propDict["connectionCharge"] = $val;
return $this;
}
/**
* Gets the currency
* Type of currency used to calculate the cost of the call. For details, see (ISO 4217.
*
* @return string|null The currency
*/
public function getCurrency()
{
if (array_key_exists("currency", $this->_propDict)) {
return $this->_propDict["currency"];
} else {
return null;
}
}
/**
* Sets the currency
* Type of currency used to calculate the cost of the call. For details, see (ISO 4217.
*
* @param string $val The value of the currency
*
* @return PstnCallLogRow
*/
public function setCurrency($val)
{
$this->_propDict["currency"] = $val;
return $this;
}
/**
* Gets the destinationContext
* Whether the call was domestic (within a country or region) or international (outside a country or region) based on the user's location.
*
* @return string|null The destinationContext
*/
public function getDestinationContext()
{
if (array_key_exists("destinationContext", $this->_propDict)) {
return $this->_propDict["destinationContext"];
} else {
return null;
}
}
/**
* Sets the destinationContext
* Whether the call was domestic (within a country or region) or international (outside a country or region) based on the user's location.
*
* @param string $val The value of the destinationContext
*
* @return PstnCallLogRow
*/
public function setDestinationContext($val)
{
$this->_propDict["destinationContext"] = $val;
return $this;
}
/**
* Gets the destinationName
* Country or region dialed.
*
* @return string|null The destinationName
*/
public function getDestinationName()
{
if (array_key_exists("destinationName", $this->_propDict)) {
return $this->_propDict["destinationName"];
} else {
return null;
}
}
/**
* Sets the destinationName
* Country or region dialed.
*
* @param string $val The value of the destinationName
*
* @return PstnCallLogRow
*/
public function setDestinationName($val)
{
$this->_propDict["destinationName"] = $val;
return $this;
}
/**
* Gets the duration
* How long the call was connected, 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
* How long the call was connected, in seconds.
*
* @param int $val The value of the duration
*
* @return PstnCallLogRow
*/
public function setDuration($val)
{
$this->_propDict["duration"] = $val;
return $this;
}
/**
* Gets the endDateTime
* Call end time.
*
* @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
* Call end time.
*
* @param \DateTime $val The value to assign to the endDateTime
*
* @return PstnCallLogRow The PstnCallLogRow
*/
public function setEndDateTime($val)
{
$this->_propDict["endDateTime"] = $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 PstnCallLogRow
*/
public function setId($val)
{
$this->_propDict["id"] = $val;
return $this;
}
/**
* Gets the inventoryType
* User's phone number type, such as a service of toll-free number.
*
* @return string|null The inventoryType
*/
public function getInventoryType()
{
if (array_key_exists("inventoryType", $this->_propDict)) {
return $this->_propDict["inventoryType"];
} else {
return null;
}
}
/**
* Sets the inventoryType
* User's phone number type, such as a service of toll-free number.
*
* @param string $val The value of the inventoryType
*
* @return PstnCallLogRow
*/
public function setInventoryType($val)
{
$this->_propDict["inventoryType"] = $val;
return $this;
}
/**
* Gets the licenseCapability
* The license used for the call.
*
* @return string|null The licenseCapability
*/
public function getLicenseCapability()
{
if (array_key_exists("licenseCapability", $this->_propDict)) {
return $this->_propDict["licenseCapability"];
} else {
return null;
}
}
/**
* Sets the licenseCapability
* The license used for the call.
*
* @param string $val The value of the licenseCapability
*
* @return PstnCallLogRow
*/
public function setLicenseCapability($val)
{
$this->_propDict["licenseCapability"] = $val;
return $this;
}
/**
* Gets the operator
* The telecommunications operator which provided PSTN services for this call. This may be Microsoft, or it may be a third-party operator via the Operator Connect Program.
*
* @return string|null The operator
*/
public function getOperator()
{
if (array_key_exists("operator", $this->_propDict)) {
return $this->_propDict["operator"];
} else {
return null;
}
}
/**
* Sets the operator
* The telecommunications operator which provided PSTN services for this call. This may be Microsoft, or it may be a third-party operator via the Operator Connect Program.
*
* @param string $val The value of the operator
*
* @return PstnCallLogRow
*/
public function setOperator($val)
{
$this->_propDict["operator"] = $val;
return $this;
}
/**
* Gets the startDateTime
* Call start 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.
*
* @param \DateTime $val The value to assign to the startDateTime
*
* @return PstnCallLogRow The PstnCallLogRow
*/
public function setStartDateTime($val)
{
$this->_propDict["startDateTime"] = $val;
return $this;
}
/**
* Gets the tenantCountryCode
* Country code of the tenant. For details, see ISO 3166-1 alpha-2.
*
* @return string|null The tenantCountryCode
*/
public function getTenantCountryCode()
{
if (array_key_exists("tenantCountryCode", $this->_propDict)) {
return $this->_propDict["tenantCountryCode"];
} else {
return null;
}
}
/**
* Sets the tenantCountryCode
* Country code of the tenant. For details, see ISO 3166-1 alpha-2.
*
* @param string $val The value of the tenantCountryCode
*
* @return PstnCallLogRow
*/
public function setTenantCountryCode($val)
{
$this->_propDict["tenantCountryCode"] = $val;
return $this;
}
/**
* Gets the usageCountryCode
* Country code of the user. For details, see ISO 3166-1 alpha-2.
*
* @return string|null The usageCountryCode
*/
public function getUsageCountryCode()
{
if (array_key_exists("usageCountryCode", $this->_propDict)) {
return $this->_propDict["usageCountryCode"];
} else {
return null;
}
}
/**
* Sets the usageCountryCode
* Country code of the user. For details, see ISO 3166-1 alpha-2.
*
* @param string $val The value of the usageCountryCode
*
* @return PstnCallLogRow
*/
public function setUsageCountryCode($val)
{
$this->_propDict["usageCountryCode"] = $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 PstnCallLogRow
*/
public function setUserDisplayName($val)
{
$this->_propDict["userDisplayName"] = $val;
return $this;
}
/**
* Gets the userId
* Calling user's ID in Graph. GUID. This and other user info will be null/empty for bot call types (ucapin, ucapout).
*
* @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. GUID. This and other user info will be null/empty for bot call types (ucapin, ucapout).
*
* @param string $val The value of the userId
*
* @return PstnCallLogRow
*/
public function setUserId($val)
{
$this->_propDict["userId"] = $val;
return $this;
}
/**
* Gets the userPrincipalName
* The user principal name (sign-in name) in Azure Active Directory. This is usually the same as the user's SIP address, and can be same as the 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
* The user principal name (sign-in name) in Azure Active Directory. This is usually the same as the user's SIP address, and can be same as the user's e-mail address.
*
* @param string $val The value of the userPrincipalName
*
* @return PstnCallLogRow
*/
public function setUserPrincipalName($val)
{
$this->_propDict["userPrincipalName"] = $val;
return $this;
}
}