@microsoft/msgraph-sdk 1.0.0-preview.26 → 1.0.0-preview.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/models/callRecords/index.d.ts +233 -233
- package/models/callRecords/index.d.ts.map +1 -1
- package/models/callRecords/index.js +362 -227
- package/models/callRecords/index.js.map +1 -1
- package/models/externalConnectors/index.d.ts +114 -114
- package/models/externalConnectors/index.d.ts.map +1 -1
- package/models/externalConnectors/index.js +239 -104
- package/models/externalConnectors/index.js.map +1 -1
- package/models/identityGovernance/index.d.ts +582 -190
- package/models/identityGovernance/index.d.ts.map +1 -1
- package/models/identityGovernance/index.js +715 -185
- package/models/identityGovernance/index.js.map +1 -1
- package/models/index.d.ts +14888 -12990
- package/models/index.d.ts.map +1 -1
- package/models/index.js +25329 -12193
- package/models/index.js.map +1 -1
- package/models/oDataErrors/index.d.ts +21 -21
- package/models/oDataErrors/index.d.ts.map +1 -1
- package/models/oDataErrors/index.js +37 -17
- package/models/oDataErrors/index.js.map +1 -1
- package/models/partners/billing/index.d.ts +42 -42
- package/models/partners/billing/index.d.ts.map +1 -1
- package/models/partners/billing/index.js +112 -42
- package/models/partners/billing/index.js.map +1 -1
- package/models/search/index.d.ts +62 -62
- package/models/search/index.d.ts.map +1 -1
- package/models/search/index.js +116 -61
- package/models/search/index.js.map +1 -1
- package/models/security/index.d.ts +1078 -1078
- package/models/security/index.d.ts.map +1 -1
- package/models/security/index.js +2072 -1057
- package/models/security/index.js.map +1 -1
- package/models/termStore/index.d.ts +61 -61
- package/models/termStore/index.d.ts.map +1 -1
- package/models/termStore/index.js +123 -58
- package/models/termStore/index.js.map +1 -1
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -5,57 +5,57 @@ export interface CallRecord extends Entity, Parsable {
|
|
|
5
5
|
/**
|
|
6
6
|
* UTC time when the last user left the call. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
7
7
|
*/
|
|
8
|
-
endDateTime?: Date;
|
|
8
|
+
endDateTime?: Date | null;
|
|
9
9
|
/**
|
|
10
10
|
* Meeting URL associated to the call. May not be available for a peerToPeer call record type.
|
|
11
11
|
*/
|
|
12
|
-
joinWebUrl?: string;
|
|
12
|
+
joinWebUrl?: string | null;
|
|
13
13
|
/**
|
|
14
14
|
* UTC time when the call record was created. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
15
15
|
*/
|
|
16
|
-
lastModifiedDateTime?: Date;
|
|
16
|
+
lastModifiedDateTime?: Date | null;
|
|
17
17
|
/**
|
|
18
18
|
* List of all the modalities used in the call. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
|
|
19
19
|
*/
|
|
20
|
-
modalities?: Modality[];
|
|
20
|
+
modalities?: Modality[] | null;
|
|
21
21
|
/**
|
|
22
22
|
* The organizing party's identity. The organizer property is deprecated and will stop returning data on June 30, 2026. Going forward, use the organizer_v2 relationship.
|
|
23
23
|
*/
|
|
24
|
-
organizer?: IdentitySet;
|
|
24
|
+
organizer?: IdentitySet | null;
|
|
25
25
|
/**
|
|
26
26
|
* Identity of the organizer of the call. This relationship is expanded by default in callRecord methods.
|
|
27
27
|
*/
|
|
28
|
-
|
|
28
|
+
organizerV2?: Organizer | null;
|
|
29
29
|
/**
|
|
30
30
|
* List of distinct identities involved in the call. Limited to 130 entries. The participants property is deprecated and will stop returning data on June 30, 2026. Going forward, use the participants_v2 relationship.
|
|
31
31
|
*/
|
|
32
|
-
participants?: IdentitySet[];
|
|
32
|
+
participants?: IdentitySet[] | null;
|
|
33
33
|
/**
|
|
34
34
|
* List of distinct participants in the call.
|
|
35
35
|
*/
|
|
36
|
-
|
|
36
|
+
participantsV2?: Participant[] | null;
|
|
37
37
|
/**
|
|
38
38
|
* List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.
|
|
39
39
|
*/
|
|
40
|
-
sessions?: Session[];
|
|
40
|
+
sessions?: Session[] | null;
|
|
41
41
|
/**
|
|
42
42
|
* UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
|
|
43
43
|
*/
|
|
44
|
-
startDateTime?: Date;
|
|
44
|
+
startDateTime?: Date | null;
|
|
45
45
|
/**
|
|
46
46
|
* The type property
|
|
47
47
|
*/
|
|
48
|
-
type?: CallType;
|
|
48
|
+
type?: CallType | null;
|
|
49
49
|
/**
|
|
50
50
|
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
|
|
51
51
|
*/
|
|
52
|
-
version?: number;
|
|
52
|
+
version?: number | null;
|
|
53
53
|
}
|
|
54
54
|
export interface CallRecordCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
55
55
|
/**
|
|
56
56
|
* The value property
|
|
57
57
|
*/
|
|
58
|
-
value?: CallRecord[];
|
|
58
|
+
value?: CallRecord[] | null;
|
|
59
59
|
}
|
|
60
60
|
export type CallType = (typeof CallTypeObject)[keyof typeof CallTypeObject];
|
|
61
61
|
export type ClientPlatform = (typeof ClientPlatformObject)[keyof typeof ClientPlatformObject];
|
|
@@ -63,19 +63,19 @@ export interface ClientUserAgent extends Parsable, UserAgent {
|
|
|
63
63
|
/**
|
|
64
64
|
* The unique identifier of the Microsoft Entra application used by this endpoint.
|
|
65
65
|
*/
|
|
66
|
-
azureADAppId?: string;
|
|
66
|
+
azureADAppId?: string | null;
|
|
67
67
|
/**
|
|
68
68
|
* Immutable resource identifier of the Azure Communication Service associated with this endpoint based on Communication Services APIs.
|
|
69
69
|
*/
|
|
70
|
-
communicationServiceId?: string;
|
|
70
|
+
communicationServiceId?: string | null;
|
|
71
71
|
/**
|
|
72
72
|
* The platform property
|
|
73
73
|
*/
|
|
74
|
-
platform?: ClientPlatform;
|
|
74
|
+
platform?: ClientPlatform | null;
|
|
75
75
|
/**
|
|
76
76
|
* The productFamily property
|
|
77
77
|
*/
|
|
78
|
-
productFamily?: ProductFamily;
|
|
78
|
+
productFamily?: ProductFamily | null;
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
81
|
* Creates a new instance of the appropriate class based on discriminator value
|
|
@@ -382,95 +382,95 @@ export interface DeviceInfo extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
382
382
|
/**
|
|
383
383
|
* Stores model information.
|
|
384
384
|
*/
|
|
385
|
-
backingStoreEnabled?: boolean;
|
|
385
|
+
backingStoreEnabled?: boolean | null;
|
|
386
386
|
/**
|
|
387
387
|
* Name of the capture device driver used by the media endpoint.
|
|
388
388
|
*/
|
|
389
|
-
captureDeviceDriver?: string;
|
|
389
|
+
captureDeviceDriver?: string | null;
|
|
390
390
|
/**
|
|
391
391
|
* Name of the capture device used by the media endpoint.
|
|
392
392
|
*/
|
|
393
|
-
captureDeviceName?: string;
|
|
393
|
+
captureDeviceName?: string | null;
|
|
394
394
|
/**
|
|
395
395
|
* Fraction of the call that the media endpoint detected the capture device was not working properly.
|
|
396
396
|
*/
|
|
397
|
-
captureNotFunctioningEventRatio?: number;
|
|
397
|
+
captureNotFunctioningEventRatio?: number | null;
|
|
398
398
|
/**
|
|
399
399
|
* Fraction of the call that the media endpoint detected the CPU resources available were insufficient and caused poor quality of the audio sent and received.
|
|
400
400
|
*/
|
|
401
|
-
cpuInsufficentEventRatio?: number;
|
|
401
|
+
cpuInsufficentEventRatio?: number | null;
|
|
402
402
|
/**
|
|
403
403
|
* Fraction of the call that the media endpoint detected clipping in the captured audio that caused poor quality of the audio being sent.
|
|
404
404
|
*/
|
|
405
|
-
deviceClippingEventRatio?: number;
|
|
405
|
+
deviceClippingEventRatio?: number | null;
|
|
406
406
|
/**
|
|
407
407
|
* Fraction of the call that the media endpoint detected glitches or gaps in the audio played or captured that caused poor quality of the audio being sent or received.
|
|
408
408
|
*/
|
|
409
|
-
deviceGlitchEventRatio?: number;
|
|
409
|
+
deviceGlitchEventRatio?: number | null;
|
|
410
410
|
/**
|
|
411
411
|
* Number of times during the call that the media endpoint detected howling or screeching audio.
|
|
412
412
|
*/
|
|
413
|
-
howlingEventCount?: number;
|
|
413
|
+
howlingEventCount?: number | null;
|
|
414
414
|
/**
|
|
415
415
|
* The root mean square (RMS) of the incoming signal of up to the first 30 seconds of the call.
|
|
416
416
|
*/
|
|
417
|
-
initialSignalLevelRootMeanSquare?: number;
|
|
417
|
+
initialSignalLevelRootMeanSquare?: number | null;
|
|
418
418
|
/**
|
|
419
419
|
* Fraction of the call that the media endpoint detected low speech level that caused poor quality of the audio being sent.
|
|
420
420
|
*/
|
|
421
|
-
lowSpeechLevelEventRatio?: number;
|
|
421
|
+
lowSpeechLevelEventRatio?: number | null;
|
|
422
422
|
/**
|
|
423
423
|
* Fraction of the call that the media endpoint detected low speech to noise level that caused poor quality of the audio being sent.
|
|
424
424
|
*/
|
|
425
|
-
lowSpeechToNoiseEventRatio?: number;
|
|
425
|
+
lowSpeechToNoiseEventRatio?: number | null;
|
|
426
426
|
/**
|
|
427
427
|
* Glitches per 5 minute interval for the media endpoint's microphone.
|
|
428
428
|
*/
|
|
429
|
-
micGlitchRate?: number;
|
|
429
|
+
micGlitchRate?: number | null;
|
|
430
430
|
/**
|
|
431
431
|
* The OdataType property
|
|
432
432
|
*/
|
|
433
|
-
odataType?: string;
|
|
433
|
+
odataType?: string | null;
|
|
434
434
|
/**
|
|
435
435
|
* Average energy level of received audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
|
|
436
436
|
*/
|
|
437
|
-
receivedNoiseLevel?: number;
|
|
437
|
+
receivedNoiseLevel?: number | null;
|
|
438
438
|
/**
|
|
439
439
|
* Average energy level of received audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
|
|
440
440
|
*/
|
|
441
|
-
receivedSignalLevel?: number;
|
|
441
|
+
receivedSignalLevel?: number | null;
|
|
442
442
|
/**
|
|
443
443
|
* Name of the render device driver used by the media endpoint.
|
|
444
444
|
*/
|
|
445
|
-
renderDeviceDriver?: string;
|
|
445
|
+
renderDeviceDriver?: string | null;
|
|
446
446
|
/**
|
|
447
447
|
* Name of the render device used by the media endpoint.
|
|
448
448
|
*/
|
|
449
|
-
renderDeviceName?: string;
|
|
449
|
+
renderDeviceName?: string | null;
|
|
450
450
|
/**
|
|
451
451
|
* Fraction of the call that media endpoint detected device render is muted.
|
|
452
452
|
*/
|
|
453
|
-
renderMuteEventRatio?: number;
|
|
453
|
+
renderMuteEventRatio?: number | null;
|
|
454
454
|
/**
|
|
455
455
|
* Fraction of the call that the media endpoint detected the render device was not working properly.
|
|
456
456
|
*/
|
|
457
|
-
renderNotFunctioningEventRatio?: number;
|
|
457
|
+
renderNotFunctioningEventRatio?: number | null;
|
|
458
458
|
/**
|
|
459
459
|
* Fraction of the call that media endpoint detected device render volume is set to 0.
|
|
460
460
|
*/
|
|
461
|
-
renderZeroVolumeEventRatio?: number;
|
|
461
|
+
renderZeroVolumeEventRatio?: number | null;
|
|
462
462
|
/**
|
|
463
463
|
* Average energy level of sent audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
|
|
464
464
|
*/
|
|
465
|
-
sentNoiseLevel?: number;
|
|
465
|
+
sentNoiseLevel?: number | null;
|
|
466
466
|
/**
|
|
467
467
|
* Average energy level of sent audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
|
|
468
468
|
*/
|
|
469
|
-
sentSignalLevel?: number;
|
|
469
|
+
sentSignalLevel?: number | null;
|
|
470
470
|
/**
|
|
471
471
|
* Glitches per 5 minute internal for the media endpoint's loudspeaker.
|
|
472
472
|
*/
|
|
473
|
-
speakerGlitchRate?: number;
|
|
473
|
+
speakerGlitchRate?: number | null;
|
|
474
474
|
}
|
|
475
475
|
export interface DirectRoutingLogRow extends AdditionalDataHolder, BackedModel, Parsable {
|
|
476
476
|
/**
|
|
@@ -480,95 +480,95 @@ export interface DirectRoutingLogRow extends AdditionalDataHolder, BackedModel,
|
|
|
480
480
|
/**
|
|
481
481
|
* Stores model information.
|
|
482
482
|
*/
|
|
483
|
-
backingStoreEnabled?: boolean;
|
|
483
|
+
backingStoreEnabled?: boolean | null;
|
|
484
484
|
/**
|
|
485
485
|
* Number of the user or bot who received the call. E.164 format, but might include other data.
|
|
486
486
|
*/
|
|
487
|
-
calleeNumber?: string;
|
|
487
|
+
calleeNumber?: string | null;
|
|
488
488
|
/**
|
|
489
489
|
* In addition to the SIP codes, Microsoft has subcodes that indicate the specific issue.
|
|
490
490
|
*/
|
|
491
|
-
callEndSubReason?: number;
|
|
491
|
+
callEndSubReason?: number | null;
|
|
492
492
|
/**
|
|
493
493
|
* Number of the user or bot who made the call. E.164 format, but might include other data.
|
|
494
494
|
*/
|
|
495
|
-
callerNumber?: string;
|
|
495
|
+
callerNumber?: string | null;
|
|
496
496
|
/**
|
|
497
497
|
* Call type and direction.
|
|
498
498
|
*/
|
|
499
|
-
callType?: string;
|
|
499
|
+
callType?: string | null;
|
|
500
500
|
/**
|
|
501
501
|
* Identifier for the call that you can use when calling Microsoft Support. GUID.
|
|
502
502
|
*/
|
|
503
|
-
correlationId?: string;
|
|
503
|
+
correlationId?: string | null;
|
|
504
504
|
/**
|
|
505
505
|
* Duration of the call in seconds.
|
|
506
506
|
*/
|
|
507
|
-
duration?: number;
|
|
507
|
+
duration?: number | null;
|
|
508
508
|
/**
|
|
509
509
|
* Only exists for successful (fully established) calls. Time when call ended.
|
|
510
510
|
*/
|
|
511
|
-
endDateTime?: Date;
|
|
511
|
+
endDateTime?: Date | null;
|
|
512
512
|
/**
|
|
513
513
|
* Only exists for failed (not fully established) calls.
|
|
514
514
|
*/
|
|
515
|
-
failureDateTime?: Date;
|
|
515
|
+
failureDateTime?: Date | null;
|
|
516
516
|
/**
|
|
517
517
|
* The final response code with which the call ended. For more information, see RFC 3261.
|
|
518
518
|
*/
|
|
519
|
-
finalSipCode?: number;
|
|
519
|
+
finalSipCode?: number | null;
|
|
520
520
|
/**
|
|
521
521
|
* Description of the SIP code and Microsoft subcode.
|
|
522
522
|
*/
|
|
523
|
-
finalSipCodePhrase?: string;
|
|
523
|
+
finalSipCodePhrase?: string | null;
|
|
524
524
|
/**
|
|
525
525
|
* Unique call identifier. GUID.
|
|
526
526
|
*/
|
|
527
|
-
id?: string;
|
|
527
|
+
id?: string | null;
|
|
528
528
|
/**
|
|
529
529
|
* The date and time when the initial invite was sent.
|
|
530
530
|
*/
|
|
531
|
-
inviteDateTime?: Date;
|
|
531
|
+
inviteDateTime?: Date | null;
|
|
532
532
|
/**
|
|
533
533
|
* Indicates whether the trunk was enabled for media bypass.
|
|
534
534
|
*/
|
|
535
|
-
mediaBypassEnabled?: boolean;
|
|
535
|
+
mediaBypassEnabled?: boolean | null;
|
|
536
536
|
/**
|
|
537
537
|
* The datacenter used for media path in a nonbypass call.
|
|
538
538
|
*/
|
|
539
|
-
mediaPathLocation?: string;
|
|
539
|
+
mediaPathLocation?: string | null;
|
|
540
540
|
/**
|
|
541
541
|
* The OdataType property
|
|
542
542
|
*/
|
|
543
|
-
odataType?: string;
|
|
543
|
+
odataType?: string | null;
|
|
544
544
|
/**
|
|
545
545
|
* The datacenter used for signaling for both bypass and nonbypass calls.
|
|
546
546
|
*/
|
|
547
|
-
signalingLocation?: string;
|
|
547
|
+
signalingLocation?: string | null;
|
|
548
548
|
/**
|
|
549
549
|
* Call start time.For failed and unanswered calls, this value can be equal to the invite or failure time.
|
|
550
550
|
*/
|
|
551
|
-
startDateTime?: Date;
|
|
551
|
+
startDateTime?: Date | null;
|
|
552
552
|
/**
|
|
553
553
|
* Success or attempt.
|
|
554
554
|
*/
|
|
555
|
-
successfulCall?: boolean;
|
|
555
|
+
successfulCall?: boolean | null;
|
|
556
556
|
/**
|
|
557
557
|
* Fully qualified domain name of the session border controller.
|
|
558
558
|
*/
|
|
559
|
-
trunkFullyQualifiedDomainName?: string;
|
|
559
|
+
trunkFullyQualifiedDomainName?: string | null;
|
|
560
560
|
/**
|
|
561
561
|
* Display name of the user.
|
|
562
562
|
*/
|
|
563
|
-
userDisplayName?: string;
|
|
563
|
+
userDisplayName?: string | null;
|
|
564
564
|
/**
|
|
565
565
|
* Calling user's ID in Microsoft Graph. This and other user information is null/empty for bot call types. GUID.
|
|
566
566
|
*/
|
|
567
|
-
userId?: string;
|
|
567
|
+
userId?: string | null;
|
|
568
568
|
/**
|
|
569
569
|
* UserPrincipalName (sign-in name) in Microsoft Entra ID. This value is usually the same as the user's SIP Address, and can be the same as the user's email address.
|
|
570
570
|
*/
|
|
571
|
-
userPrincipalName?: string;
|
|
571
|
+
userPrincipalName?: string | null;
|
|
572
572
|
}
|
|
573
573
|
export interface Endpoint extends AdditionalDataHolder, BackedModel, Parsable {
|
|
574
574
|
/**
|
|
@@ -578,15 +578,15 @@ export interface Endpoint extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
578
578
|
/**
|
|
579
579
|
* Stores model information.
|
|
580
580
|
*/
|
|
581
|
-
backingStoreEnabled?: boolean;
|
|
581
|
+
backingStoreEnabled?: boolean | null;
|
|
582
582
|
/**
|
|
583
583
|
* The OdataType property
|
|
584
584
|
*/
|
|
585
|
-
odataType?: string;
|
|
585
|
+
odataType?: string | null;
|
|
586
586
|
/**
|
|
587
587
|
* User-agent reported by this endpoint.
|
|
588
588
|
*/
|
|
589
|
-
userAgent?: UserAgent;
|
|
589
|
+
userAgent?: UserAgent | null;
|
|
590
590
|
}
|
|
591
591
|
export interface FailureInfo extends AdditionalDataHolder, BackedModel, Parsable {
|
|
592
592
|
/**
|
|
@@ -596,19 +596,19 @@ export interface FailureInfo extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
596
596
|
/**
|
|
597
597
|
* Stores model information.
|
|
598
598
|
*/
|
|
599
|
-
backingStoreEnabled?: boolean;
|
|
599
|
+
backingStoreEnabled?: boolean | null;
|
|
600
600
|
/**
|
|
601
601
|
* The OdataType property
|
|
602
602
|
*/
|
|
603
|
-
odataType?: string;
|
|
603
|
+
odataType?: string | null;
|
|
604
604
|
/**
|
|
605
605
|
* Classification of why a call or portion of a call failed.
|
|
606
606
|
*/
|
|
607
|
-
reason?: string;
|
|
607
|
+
reason?: string | null;
|
|
608
608
|
/**
|
|
609
609
|
* The stage property
|
|
610
610
|
*/
|
|
611
|
-
stage?: FailureStage;
|
|
611
|
+
stage?: FailureStage | null;
|
|
612
612
|
}
|
|
613
613
|
export type FailureStage = (typeof FailureStageObject)[keyof typeof FailureStageObject];
|
|
614
614
|
export interface FeedbackTokenSet extends AdditionalDataHolder, BackedModel, Parsable {
|
|
@@ -619,11 +619,11 @@ export interface FeedbackTokenSet extends AdditionalDataHolder, BackedModel, Par
|
|
|
619
619
|
/**
|
|
620
620
|
* Stores model information.
|
|
621
621
|
*/
|
|
622
|
-
backingStoreEnabled?: boolean;
|
|
622
|
+
backingStoreEnabled?: boolean | null;
|
|
623
623
|
/**
|
|
624
624
|
* The OdataType property
|
|
625
625
|
*/
|
|
626
|
-
odataType?: string;
|
|
626
|
+
odataType?: string | null;
|
|
627
627
|
}
|
|
628
628
|
export interface Media extends AdditionalDataHolder, BackedModel, Parsable {
|
|
629
629
|
/**
|
|
@@ -633,35 +633,35 @@ export interface Media extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
633
633
|
/**
|
|
634
634
|
* Stores model information.
|
|
635
635
|
*/
|
|
636
|
-
backingStoreEnabled?: boolean;
|
|
636
|
+
backingStoreEnabled?: boolean | null;
|
|
637
637
|
/**
|
|
638
638
|
* Device information associated with the callee endpoint of this media.
|
|
639
639
|
*/
|
|
640
|
-
calleeDevice?: DeviceInfo;
|
|
640
|
+
calleeDevice?: DeviceInfo | null;
|
|
641
641
|
/**
|
|
642
642
|
* Network information associated with the callee endpoint of this media.
|
|
643
643
|
*/
|
|
644
|
-
calleeNetwork?: NetworkInfo;
|
|
644
|
+
calleeNetwork?: NetworkInfo | null;
|
|
645
645
|
/**
|
|
646
646
|
* Device information associated with the caller endpoint of this media.
|
|
647
647
|
*/
|
|
648
|
-
callerDevice?: DeviceInfo;
|
|
648
|
+
callerDevice?: DeviceInfo | null;
|
|
649
649
|
/**
|
|
650
650
|
* Network information associated with the caller endpoint of this media.
|
|
651
651
|
*/
|
|
652
|
-
callerNetwork?: NetworkInfo;
|
|
652
|
+
callerNetwork?: NetworkInfo | null;
|
|
653
653
|
/**
|
|
654
654
|
* How the media was identified during media negotiation stage.
|
|
655
655
|
*/
|
|
656
|
-
label?: string;
|
|
656
|
+
label?: string | null;
|
|
657
657
|
/**
|
|
658
658
|
* The OdataType property
|
|
659
659
|
*/
|
|
660
|
-
odataType?: string;
|
|
660
|
+
odataType?: string | null;
|
|
661
661
|
/**
|
|
662
662
|
* Network streams associated with this media.
|
|
663
663
|
*/
|
|
664
|
-
streams?: MediaStream[];
|
|
664
|
+
streams?: MediaStream[] | null;
|
|
665
665
|
}
|
|
666
666
|
export interface MediaStream extends AdditionalDataHolder, BackedModel, Parsable {
|
|
667
667
|
/**
|
|
@@ -671,131 +671,131 @@ export interface MediaStream extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
671
671
|
/**
|
|
672
672
|
* Codec name used to encode audio for transmission on the network. Possible values are: unknown, invalid, cn, pcma, pcmu, amrWide, g722, g7221, g7221c, g729, multiChannelAudio, muchv2, opus, satin, satinFullband, rtAudio8, rtAudio16, silk, silkNarrow, silkWide, siren, xmsRta, unknownFutureValue.
|
|
673
673
|
*/
|
|
674
|
-
audioCodec?: AudioCodec;
|
|
674
|
+
audioCodec?: AudioCodec | null;
|
|
675
675
|
/**
|
|
676
676
|
* Average Network Mean Opinion Score degradation for stream. Represents how much the network loss and jitter has impacted the quality of received audio.
|
|
677
677
|
*/
|
|
678
|
-
averageAudioDegradation?: number;
|
|
678
|
+
averageAudioDegradation?: number | null;
|
|
679
679
|
/**
|
|
680
680
|
* Average jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator.
|
|
681
681
|
*/
|
|
682
|
-
averageAudioNetworkJitter?: Duration;
|
|
682
|
+
averageAudioNetworkJitter?: Duration | null;
|
|
683
683
|
/**
|
|
684
684
|
* Average estimated bandwidth available between two endpoints in bits per second.
|
|
685
685
|
*/
|
|
686
|
-
averageBandwidthEstimate?: number;
|
|
686
|
+
averageBandwidthEstimate?: number | null;
|
|
687
687
|
/**
|
|
688
688
|
* Average duration of the received freezing time in the video stream.
|
|
689
689
|
*/
|
|
690
|
-
averageFreezeDuration?: Duration;
|
|
690
|
+
averageFreezeDuration?: Duration | null;
|
|
691
691
|
/**
|
|
692
692
|
* Average jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator.
|
|
693
693
|
*/
|
|
694
|
-
averageJitter?: Duration;
|
|
694
|
+
averageJitter?: Duration | null;
|
|
695
695
|
/**
|
|
696
696
|
* Average packet loss rate for stream.
|
|
697
697
|
*/
|
|
698
|
-
averagePacketLossRate?: number;
|
|
698
|
+
averagePacketLossRate?: number | null;
|
|
699
699
|
/**
|
|
700
700
|
* Ratio of the number of audio frames with samples generated by packet loss concealment to the total number of audio frames.
|
|
701
701
|
*/
|
|
702
|
-
averageRatioOfConcealedSamples?: number;
|
|
702
|
+
averageRatioOfConcealedSamples?: number | null;
|
|
703
703
|
/**
|
|
704
704
|
* Average frames per second received for all video streams computed over the duration of the session.
|
|
705
705
|
*/
|
|
706
|
-
averageReceivedFrameRate?: number;
|
|
706
|
+
averageReceivedFrameRate?: number | null;
|
|
707
707
|
/**
|
|
708
708
|
* Average network propagation round-trip time computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator.
|
|
709
709
|
*/
|
|
710
|
-
averageRoundTripTime?: Duration;
|
|
710
|
+
averageRoundTripTime?: Duration | null;
|
|
711
711
|
/**
|
|
712
712
|
* Average percentage of video frames lost as displayed to the user.
|
|
713
713
|
*/
|
|
714
|
-
averageVideoFrameLossPercentage?: number;
|
|
714
|
+
averageVideoFrameLossPercentage?: number | null;
|
|
715
715
|
/**
|
|
716
716
|
* Average frames per second received for a video stream, computed over the duration of the session.
|
|
717
717
|
*/
|
|
718
|
-
averageVideoFrameRate?: number;
|
|
718
|
+
averageVideoFrameRate?: number | null;
|
|
719
719
|
/**
|
|
720
720
|
* Average fraction of packets lost, as specified in RFC 3550, computed over the duration of the session.
|
|
721
721
|
*/
|
|
722
|
-
averageVideoPacketLossRate?: number;
|
|
722
|
+
averageVideoPacketLossRate?: number | null;
|
|
723
723
|
/**
|
|
724
724
|
* Stores model information.
|
|
725
725
|
*/
|
|
726
|
-
backingStoreEnabled?: boolean;
|
|
726
|
+
backingStoreEnabled?: boolean | null;
|
|
727
727
|
/**
|
|
728
728
|
* UTC time when the stream ended. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. This field is only available for streams that use the SIP protocol.
|
|
729
729
|
*/
|
|
730
|
-
endDateTime?: Date;
|
|
730
|
+
endDateTime?: Date | null;
|
|
731
731
|
/**
|
|
732
732
|
* Indicates whether the forward error correction (FEC) was used at some point during the session. The default value is null.
|
|
733
733
|
*/
|
|
734
|
-
isAudioForwardErrorCorrectionUsed?: boolean;
|
|
734
|
+
isAudioForwardErrorCorrectionUsed?: boolean | null;
|
|
735
735
|
/**
|
|
736
736
|
* Fraction of the call where frame rate is less than 7.5 frames per second.
|
|
737
737
|
*/
|
|
738
|
-
lowFrameRateRatio?: number;
|
|
738
|
+
lowFrameRateRatio?: number | null;
|
|
739
739
|
/**
|
|
740
740
|
* Fraction of the call that the client is running less than 70% expected video processing capability.
|
|
741
741
|
*/
|
|
742
|
-
lowVideoProcessingCapabilityRatio?: number;
|
|
742
|
+
lowVideoProcessingCapabilityRatio?: number | null;
|
|
743
743
|
/**
|
|
744
744
|
* Maximum of audio network jitter computed over each of the 20 second windows during the session, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator.
|
|
745
745
|
*/
|
|
746
|
-
maxAudioNetworkJitter?: Duration;
|
|
746
|
+
maxAudioNetworkJitter?: Duration | null;
|
|
747
747
|
/**
|
|
748
748
|
* Maximum jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator.
|
|
749
749
|
*/
|
|
750
|
-
maxJitter?: Duration;
|
|
750
|
+
maxJitter?: Duration | null;
|
|
751
751
|
/**
|
|
752
752
|
* Maximum packet loss rate for the stream.
|
|
753
753
|
*/
|
|
754
|
-
maxPacketLossRate?: number;
|
|
754
|
+
maxPacketLossRate?: number | null;
|
|
755
755
|
/**
|
|
756
756
|
* Maximum ratio of packets concealed by the healer.
|
|
757
757
|
*/
|
|
758
|
-
maxRatioOfConcealedSamples?: number;
|
|
758
|
+
maxRatioOfConcealedSamples?: number | null;
|
|
759
759
|
/**
|
|
760
760
|
* Maximum network propagation round-trip time computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator.
|
|
761
761
|
*/
|
|
762
|
-
maxRoundTripTime?: Duration;
|
|
762
|
+
maxRoundTripTime?: Duration | null;
|
|
763
763
|
/**
|
|
764
764
|
* The OdataType property
|
|
765
765
|
*/
|
|
766
|
-
odataType?: string;
|
|
766
|
+
odataType?: string | null;
|
|
767
767
|
/**
|
|
768
768
|
* Packet count for the stream.
|
|
769
769
|
*/
|
|
770
|
-
packetUtilization?: number;
|
|
770
|
+
packetUtilization?: number | null;
|
|
771
771
|
/**
|
|
772
772
|
* Packet loss rate after FEC has been applied aggregated across all video streams and codecs.
|
|
773
773
|
*/
|
|
774
|
-
postForwardErrorCorrectionPacketLossRate?: number;
|
|
774
|
+
postForwardErrorCorrectionPacketLossRate?: number | null;
|
|
775
775
|
/**
|
|
776
776
|
* Average duration of the received freezing time in the video stream represented in root mean square.
|
|
777
777
|
*/
|
|
778
|
-
rmsFreezeDuration?: Duration;
|
|
778
|
+
rmsFreezeDuration?: Duration | null;
|
|
779
779
|
/**
|
|
780
780
|
* UTC time when the stream started. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. This field is only available for streams that use the SIP protocol.
|
|
781
781
|
*/
|
|
782
|
-
startDateTime?: Date;
|
|
782
|
+
startDateTime?: Date | null;
|
|
783
783
|
/**
|
|
784
784
|
* The streamDirection property
|
|
785
785
|
*/
|
|
786
|
-
streamDirection?: MediaStreamDirection;
|
|
786
|
+
streamDirection?: MediaStreamDirection | null;
|
|
787
787
|
/**
|
|
788
788
|
* Unique identifier for the stream.
|
|
789
789
|
*/
|
|
790
|
-
streamId?: string;
|
|
790
|
+
streamId?: string | null;
|
|
791
791
|
/**
|
|
792
792
|
* Codec name used to encode video for transmission on the network. Possible values are: unknown, invalid, av1, h263, h264, h264s, h264uc, h265, rtvc1, rtVideo, xrtvc1, unknownFutureValue.
|
|
793
793
|
*/
|
|
794
|
-
videoCodec?: VideoCodec;
|
|
794
|
+
videoCodec?: VideoCodec | null;
|
|
795
795
|
/**
|
|
796
796
|
* True if the media stream bypassed the Mediation Server and went straight between client and PSTN Gateway/PBX, false otherwise.
|
|
797
797
|
*/
|
|
798
|
-
wasMediaBypassed?: boolean;
|
|
798
|
+
wasMediaBypassed?: boolean | null;
|
|
799
799
|
}
|
|
800
800
|
export type MediaStreamDirection = (typeof MediaStreamDirectionObject)[keyof typeof MediaStreamDirectionObject];
|
|
801
801
|
export type Modality = (typeof ModalityObject)[keyof typeof ModalityObject];
|
|
@@ -808,115 +808,115 @@ export interface NetworkInfo extends AdditionalDataHolder, BackedModel, Parsable
|
|
|
808
808
|
/**
|
|
809
809
|
* Stores model information.
|
|
810
810
|
*/
|
|
811
|
-
backingStoreEnabled?: boolean;
|
|
811
|
+
backingStoreEnabled?: boolean | null;
|
|
812
812
|
/**
|
|
813
813
|
* Fraction of the call that the media endpoint detected the available bandwidth or bandwidth policy was low enough to cause poor quality of the audio sent.
|
|
814
814
|
*/
|
|
815
|
-
bandwidthLowEventRatio?: number;
|
|
815
|
+
bandwidthLowEventRatio?: number | null;
|
|
816
816
|
/**
|
|
817
817
|
* The wireless LAN basic service set identifier of the media endpoint used to connect to the network.
|
|
818
818
|
*/
|
|
819
|
-
basicServiceSetIdentifier?: string;
|
|
819
|
+
basicServiceSetIdentifier?: string | null;
|
|
820
820
|
/**
|
|
821
821
|
* The connectionType property
|
|
822
822
|
*/
|
|
823
|
-
connectionType?: NetworkConnectionType;
|
|
823
|
+
connectionType?: NetworkConnectionType | null;
|
|
824
824
|
/**
|
|
825
825
|
* Fraction of the call that the media endpoint detected the network delay was significant enough to impact the ability to have real-time two-way communication.
|
|
826
826
|
*/
|
|
827
|
-
delayEventRatio?: number;
|
|
827
|
+
delayEventRatio?: number | null;
|
|
828
828
|
/**
|
|
829
829
|
* DNS suffix associated with the network adapter of the media endpoint.
|
|
830
830
|
*/
|
|
831
|
-
dnsSuffix?: string;
|
|
831
|
+
dnsSuffix?: string | null;
|
|
832
832
|
/**
|
|
833
833
|
* IP address of the media endpoint.
|
|
834
834
|
*/
|
|
835
|
-
ipAddress?: string;
|
|
835
|
+
ipAddress?: string | null;
|
|
836
836
|
/**
|
|
837
837
|
* Link speed in bits per second reported by the network adapter used by the media endpoint.
|
|
838
838
|
*/
|
|
839
|
-
linkSpeed?: number;
|
|
839
|
+
linkSpeed?: number | null;
|
|
840
840
|
/**
|
|
841
841
|
* The media access control (MAC) address of the media endpoint's network device. This value may be missing or shown as 02:00:00:00:00:00 due to operating system privacy policies.
|
|
842
842
|
*/
|
|
843
|
-
macAddress?: string;
|
|
843
|
+
macAddress?: string | null;
|
|
844
844
|
/**
|
|
845
845
|
* The networkTransportProtocol property
|
|
846
846
|
*/
|
|
847
|
-
networkTransportProtocol?: NetworkTransportProtocol;
|
|
847
|
+
networkTransportProtocol?: NetworkTransportProtocol | null;
|
|
848
848
|
/**
|
|
849
849
|
* The OdataType property
|
|
850
850
|
*/
|
|
851
|
-
odataType?: string;
|
|
851
|
+
odataType?: string | null;
|
|
852
852
|
/**
|
|
853
853
|
* Network port number used by media endpoint.
|
|
854
854
|
*/
|
|
855
|
-
port?: number;
|
|
855
|
+
port?: number | null;
|
|
856
856
|
/**
|
|
857
857
|
* Fraction of the call that the media endpoint detected the network was causing poor quality of the audio received.
|
|
858
858
|
*/
|
|
859
|
-
receivedQualityEventRatio?: number;
|
|
859
|
+
receivedQualityEventRatio?: number | null;
|
|
860
860
|
/**
|
|
861
861
|
* IP address of the media endpoint as seen by the media relay server. This is typically the public internet IP address associated to the endpoint.
|
|
862
862
|
*/
|
|
863
|
-
reflexiveIPAddress?: string;
|
|
863
|
+
reflexiveIPAddress?: string | null;
|
|
864
864
|
/**
|
|
865
865
|
* IP address of the media relay server allocated by the media endpoint.
|
|
866
866
|
*/
|
|
867
|
-
relayIPAddress?: string;
|
|
867
|
+
relayIPAddress?: string | null;
|
|
868
868
|
/**
|
|
869
869
|
* Network port number allocated on the media relay server by the media endpoint.
|
|
870
870
|
*/
|
|
871
|
-
relayPort?: number;
|
|
871
|
+
relayPort?: number | null;
|
|
872
872
|
/**
|
|
873
873
|
* Fraction of the call that the media endpoint detected the network was causing poor quality of the audio sent.
|
|
874
874
|
*/
|
|
875
|
-
sentQualityEventRatio?: number;
|
|
875
|
+
sentQualityEventRatio?: number | null;
|
|
876
876
|
/**
|
|
877
877
|
* Subnet used for media stream by the media endpoint.
|
|
878
878
|
*/
|
|
879
|
-
subnet?: string;
|
|
879
|
+
subnet?: string | null;
|
|
880
880
|
/**
|
|
881
881
|
* List of network trace route hops collected for this media stream.*
|
|
882
882
|
*/
|
|
883
|
-
traceRouteHops?: TraceRouteHop[];
|
|
883
|
+
traceRouteHops?: TraceRouteHop[] | null;
|
|
884
884
|
/**
|
|
885
885
|
* The wifiBand property
|
|
886
886
|
*/
|
|
887
|
-
wifiBand?: WifiBand;
|
|
887
|
+
wifiBand?: WifiBand | null;
|
|
888
888
|
/**
|
|
889
889
|
* Estimated remaining battery charge in percentage reported by the media endpoint.
|
|
890
890
|
*/
|
|
891
|
-
wifiBatteryCharge?: number;
|
|
891
|
+
wifiBatteryCharge?: number | null;
|
|
892
892
|
/**
|
|
893
893
|
* WiFi channel used by the media endpoint.
|
|
894
894
|
*/
|
|
895
|
-
wifiChannel?: number;
|
|
895
|
+
wifiChannel?: number | null;
|
|
896
896
|
/**
|
|
897
897
|
* Name of the Microsoft WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.
|
|
898
898
|
*/
|
|
899
|
-
wifiMicrosoftDriver?: string;
|
|
899
|
+
wifiMicrosoftDriver?: string | null;
|
|
900
900
|
/**
|
|
901
901
|
* Version of the Microsoft WiFi driver used by the media endpoint.
|
|
902
902
|
*/
|
|
903
|
-
wifiMicrosoftDriverVersion?: string;
|
|
903
|
+
wifiMicrosoftDriverVersion?: string | null;
|
|
904
904
|
/**
|
|
905
905
|
* The wifiRadioType property
|
|
906
906
|
*/
|
|
907
|
-
wifiRadioType?: WifiRadioType;
|
|
907
|
+
wifiRadioType?: WifiRadioType | null;
|
|
908
908
|
/**
|
|
909
909
|
* WiFi signal strength in percentage reported by the media endpoint.
|
|
910
910
|
*/
|
|
911
|
-
wifiSignalStrength?: number;
|
|
911
|
+
wifiSignalStrength?: number | null;
|
|
912
912
|
/**
|
|
913
913
|
* Name of the WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.
|
|
914
914
|
*/
|
|
915
|
-
wifiVendorDriver?: string;
|
|
915
|
+
wifiVendorDriver?: string | null;
|
|
916
916
|
/**
|
|
917
917
|
* Version of the WiFi driver used by the media endpoint.
|
|
918
918
|
*/
|
|
919
|
-
wifiVendorDriverVersion?: string;
|
|
919
|
+
wifiVendorDriverVersion?: string | null;
|
|
920
920
|
}
|
|
921
921
|
export type NetworkTransportProtocol = (typeof NetworkTransportProtocolObject)[keyof typeof NetworkTransportProtocolObject];
|
|
922
922
|
export interface Organizer extends Parsable, ParticipantBase {
|
|
@@ -927,43 +927,43 @@ export interface ParticipantBase extends Entity, Parsable {
|
|
|
927
927
|
/**
|
|
928
928
|
* The identity of the call participant.
|
|
929
929
|
*/
|
|
930
|
-
identity?: CommunicationsIdentitySet;
|
|
930
|
+
identity?: CommunicationsIdentitySet | null;
|
|
931
931
|
}
|
|
932
932
|
export interface ParticipantCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
933
933
|
/**
|
|
934
934
|
* The value property
|
|
935
935
|
*/
|
|
936
|
-
value?: Participant[];
|
|
936
|
+
value?: Participant[] | null;
|
|
937
937
|
}
|
|
938
938
|
export interface ParticipantEndpoint extends Endpoint, Parsable {
|
|
939
939
|
/**
|
|
940
940
|
* Identity associated with the endpoint.
|
|
941
941
|
*/
|
|
942
|
-
associatedIdentity?: Identity;
|
|
942
|
+
associatedIdentity?: Identity | null;
|
|
943
943
|
/**
|
|
944
944
|
* CPU number of cores used by the media endpoint.
|
|
945
945
|
*/
|
|
946
|
-
cpuCoresCount?: number;
|
|
946
|
+
cpuCoresCount?: number | null;
|
|
947
947
|
/**
|
|
948
948
|
* CPU name used by the media endpoint.
|
|
949
949
|
*/
|
|
950
|
-
cpuName?: string;
|
|
950
|
+
cpuName?: string | null;
|
|
951
951
|
/**
|
|
952
952
|
* CPU processor speed used by the media endpoint.
|
|
953
953
|
*/
|
|
954
|
-
cpuProcessorSpeedInMhz?: number;
|
|
954
|
+
cpuProcessorSpeedInMhz?: number | null;
|
|
955
955
|
/**
|
|
956
956
|
* The feedback provided by the user of this endpoint about the quality of the session.
|
|
957
957
|
*/
|
|
958
|
-
feedback?: UserFeedback;
|
|
958
|
+
feedback?: UserFeedback | null;
|
|
959
959
|
/**
|
|
960
960
|
* Identity associated with the endpoint. The identity property is deprecated and will stop returning data on June 30, 2026. Going forward, use the associatedIdentity property.
|
|
961
961
|
*/
|
|
962
|
-
identity?: IdentitySet;
|
|
962
|
+
identity?: IdentitySet | null;
|
|
963
963
|
/**
|
|
964
964
|
* Name of the device used by the media endpoint.
|
|
965
965
|
*/
|
|
966
|
-
name?: string;
|
|
966
|
+
name?: string | null;
|
|
967
967
|
}
|
|
968
968
|
export type ProductFamily = (typeof ProductFamilyObject)[keyof typeof ProductFamilyObject];
|
|
969
969
|
export type PstnCallDurationSource = (typeof PstnCallDurationSourceObject)[keyof typeof PstnCallDurationSourceObject];
|
|
@@ -975,271 +975,271 @@ export interface PstnCallLogRow extends AdditionalDataHolder, BackedModel, Parsa
|
|
|
975
975
|
/**
|
|
976
976
|
* Stores model information.
|
|
977
977
|
*/
|
|
978
|
-
backingStoreEnabled?: boolean;
|
|
978
|
+
backingStoreEnabled?: boolean | null;
|
|
979
979
|
/**
|
|
980
980
|
* The source of the call duration data. If the call uses a third-party telecommunications operator via the Operator Connect Program, the operator can provide their own call duration data. In this case, the property value is operator. Otherwise, the value is microsoft.
|
|
981
981
|
*/
|
|
982
|
-
callDurationSource?: PstnCallDurationSource;
|
|
982
|
+
callDurationSource?: PstnCallDurationSource | null;
|
|
983
983
|
/**
|
|
984
984
|
* Number dialed in E.164 format.
|
|
985
985
|
*/
|
|
986
|
-
calleeNumber?: string;
|
|
986
|
+
calleeNumber?: string | null;
|
|
987
987
|
/**
|
|
988
988
|
* Number that received the call for inbound calls or the number dialed for outbound calls. E.164 format.
|
|
989
989
|
*/
|
|
990
|
-
callerNumber?: string;
|
|
990
|
+
callerNumber?: string | null;
|
|
991
991
|
/**
|
|
992
992
|
* Call identifier. Not guaranteed to be unique.
|
|
993
993
|
*/
|
|
994
|
-
callId?: string;
|
|
994
|
+
callId?: string | null;
|
|
995
995
|
/**
|
|
996
996
|
* Indicates 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.
|
|
997
997
|
*/
|
|
998
|
-
callType?: string;
|
|
998
|
+
callType?: string | null;
|
|
999
999
|
/**
|
|
1000
1000
|
* Amount of money or cost of the call that is charged to your account.
|
|
1001
1001
|
*/
|
|
1002
|
-
charge?: number;
|
|
1002
|
+
charge?: number | null;
|
|
1003
1003
|
/**
|
|
1004
1004
|
* ID of the audio conference.
|
|
1005
1005
|
*/
|
|
1006
|
-
conferenceId?: string;
|
|
1006
|
+
conferenceId?: string | null;
|
|
1007
1007
|
/**
|
|
1008
1008
|
* Connection fee price.
|
|
1009
1009
|
*/
|
|
1010
|
-
connectionCharge?: number;
|
|
1010
|
+
connectionCharge?: number | null;
|
|
1011
1011
|
/**
|
|
1012
1012
|
* Type of currency used to calculate the cost of the call. For details, see (ISO 4217.
|
|
1013
1013
|
*/
|
|
1014
|
-
currency?: string;
|
|
1014
|
+
currency?: string | null;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* Whether the call was domestic (within a country or region) or international (outside a country or region), based on the user's location.
|
|
1017
1017
|
*/
|
|
1018
|
-
destinationContext?: string;
|
|
1018
|
+
destinationContext?: string | null;
|
|
1019
1019
|
/**
|
|
1020
1020
|
* Country or region dialed.
|
|
1021
1021
|
*/
|
|
1022
|
-
destinationName?: string;
|
|
1022
|
+
destinationName?: string | null;
|
|
1023
1023
|
/**
|
|
1024
1024
|
* How long the call was connected, in seconds.
|
|
1025
1025
|
*/
|
|
1026
|
-
duration?: number;
|
|
1026
|
+
duration?: number | null;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* Call end time.
|
|
1029
1029
|
*/
|
|
1030
|
-
endDateTime?: Date;
|
|
1030
|
+
endDateTime?: Date | null;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* Unique call identifier. GUID.
|
|
1033
1033
|
*/
|
|
1034
|
-
id?: string;
|
|
1034
|
+
id?: string | null;
|
|
1035
1035
|
/**
|
|
1036
1036
|
* User's phone number type, such as a service of toll-free number.
|
|
1037
1037
|
*/
|
|
1038
|
-
inventoryType?: string;
|
|
1038
|
+
inventoryType?: string | null;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* The license used for the call.
|
|
1041
1041
|
*/
|
|
1042
|
-
licenseCapability?: string;
|
|
1042
|
+
licenseCapability?: string | null;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* The OdataType property
|
|
1045
1045
|
*/
|
|
1046
|
-
odataType?: string;
|
|
1046
|
+
odataType?: string | null;
|
|
1047
1047
|
/**
|
|
1048
1048
|
* The telecommunications operator which provided PSTN services for this call. This might be Microsoft, or it might be a third-party operator via the Operator Connect Program.
|
|
1049
1049
|
*/
|
|
1050
|
-
operator?: string;
|
|
1050
|
+
operator?: string | null;
|
|
1051
1051
|
/**
|
|
1052
1052
|
* Call start time.
|
|
1053
1053
|
*/
|
|
1054
|
-
startDateTime?: Date;
|
|
1054
|
+
startDateTime?: Date | null;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* Country code of the tenant. For details, see ISO 3166-1 alpha-2.
|
|
1057
1057
|
*/
|
|
1058
|
-
tenantCountryCode?: string;
|
|
1058
|
+
tenantCountryCode?: string | null;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* Country code of the user. For details, see ISO 3166-1 alpha-2.
|
|
1061
1061
|
*/
|
|
1062
|
-
usageCountryCode?: string;
|
|
1062
|
+
usageCountryCode?: string | null;
|
|
1063
1063
|
/**
|
|
1064
1064
|
* Display name of the user.
|
|
1065
1065
|
*/
|
|
1066
|
-
userDisplayName?: string;
|
|
1066
|
+
userDisplayName?: string | null;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* Calling user's ID in Microsoft Graph. GUID. This and other user info will be null/empty for bot call types (ucapin, ucapout).
|
|
1069
1069
|
*/
|
|
1070
|
-
userId?: string;
|
|
1070
|
+
userId?: string | null;
|
|
1071
1071
|
/**
|
|
1072
1072
|
* The user principal name (sign-in name) in Microsoft Entra ID. This is usually the same as the user's SIP address, and can be the same as the user's email address.
|
|
1073
1073
|
*/
|
|
1074
|
-
userPrincipalName?: string;
|
|
1074
|
+
userPrincipalName?: string | null;
|
|
1075
1075
|
}
|
|
1076
1076
|
export interface Segment extends Entity, Parsable {
|
|
1077
1077
|
/**
|
|
1078
1078
|
* Endpoint that answered this segment.
|
|
1079
1079
|
*/
|
|
1080
|
-
callee?: Endpoint;
|
|
1080
|
+
callee?: Endpoint | null;
|
|
1081
1081
|
/**
|
|
1082
1082
|
* Endpoint that initiated this segment.
|
|
1083
1083
|
*/
|
|
1084
|
-
caller?: Endpoint;
|
|
1084
|
+
caller?: Endpoint | null;
|
|
1085
1085
|
/**
|
|
1086
1086
|
* UTC time when the segment ended. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
1087
1087
|
*/
|
|
1088
|
-
endDateTime?: Date;
|
|
1088
|
+
endDateTime?: Date | null;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* Failure information associated with the segment if it failed.
|
|
1091
1091
|
*/
|
|
1092
|
-
failureInfo?: FailureInfo;
|
|
1092
|
+
failureInfo?: FailureInfo | null;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* Media associated with this segment.
|
|
1095
1095
|
*/
|
|
1096
|
-
media?: Media[];
|
|
1096
|
+
media?: Media[] | null;
|
|
1097
1097
|
/**
|
|
1098
1098
|
* UTC time when the segment started. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
1099
1099
|
*/
|
|
1100
|
-
startDateTime?: Date;
|
|
1100
|
+
startDateTime?: Date | null;
|
|
1101
1101
|
}
|
|
1102
1102
|
export interface SegmentCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
1103
1103
|
/**
|
|
1104
1104
|
* The value property
|
|
1105
1105
|
*/
|
|
1106
|
-
value?: Segment[];
|
|
1106
|
+
value?: Segment[] | null;
|
|
1107
1107
|
}
|
|
1108
1108
|
/**
|
|
1109
1109
|
* Serializes information the current object
|
|
1110
1110
|
* @param writer Serialization writer to use to serialize this model
|
|
1111
1111
|
*/
|
|
1112
|
-
export declare function serializeCallRecord(writer: SerializationWriter, callRecord?: Partial<CallRecord> | undefined): void;
|
|
1112
|
+
export declare function serializeCallRecord(writer: SerializationWriter, callRecord?: Partial<CallRecord> | undefined | null): void;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* Serializes information the current object
|
|
1115
1115
|
* @param writer Serialization writer to use to serialize this model
|
|
1116
1116
|
*/
|
|
1117
|
-
export declare function serializeCallRecordCollectionResponse(writer: SerializationWriter, callRecordCollectionResponse?: Partial<CallRecordCollectionResponse> | undefined): void;
|
|
1117
|
+
export declare function serializeCallRecordCollectionResponse(writer: SerializationWriter, callRecordCollectionResponse?: Partial<CallRecordCollectionResponse> | undefined | null): void;
|
|
1118
1118
|
/**
|
|
1119
1119
|
* Serializes information the current object
|
|
1120
1120
|
* @param writer Serialization writer to use to serialize this model
|
|
1121
1121
|
*/
|
|
1122
|
-
export declare function serializeClientUserAgent(writer: SerializationWriter, clientUserAgent?: Partial<ClientUserAgent> | undefined): void;
|
|
1122
|
+
export declare function serializeClientUserAgent(writer: SerializationWriter, clientUserAgent?: Partial<ClientUserAgent> | undefined | null): void;
|
|
1123
1123
|
/**
|
|
1124
1124
|
* Serializes information the current object
|
|
1125
1125
|
* @param writer Serialization writer to use to serialize this model
|
|
1126
1126
|
*/
|
|
1127
|
-
export declare function serializeDeviceInfo(writer: SerializationWriter, deviceInfo?: Partial<DeviceInfo> | undefined): void;
|
|
1127
|
+
export declare function serializeDeviceInfo(writer: SerializationWriter, deviceInfo?: Partial<DeviceInfo> | undefined | null): void;
|
|
1128
1128
|
/**
|
|
1129
1129
|
* Serializes information the current object
|
|
1130
1130
|
* @param writer Serialization writer to use to serialize this model
|
|
1131
1131
|
*/
|
|
1132
|
-
export declare function serializeDirectRoutingLogRow(writer: SerializationWriter, directRoutingLogRow?: Partial<DirectRoutingLogRow> | undefined): void;
|
|
1132
|
+
export declare function serializeDirectRoutingLogRow(writer: SerializationWriter, directRoutingLogRow?: Partial<DirectRoutingLogRow> | undefined | null): void;
|
|
1133
1133
|
/**
|
|
1134
1134
|
* Serializes information the current object
|
|
1135
1135
|
* @param writer Serialization writer to use to serialize this model
|
|
1136
1136
|
*/
|
|
1137
|
-
export declare function serializeEndpoint(writer: SerializationWriter, endpoint?: Partial<Endpoint> | undefined): void;
|
|
1137
|
+
export declare function serializeEndpoint(writer: SerializationWriter, endpoint?: Partial<Endpoint> | undefined | null): void;
|
|
1138
1138
|
/**
|
|
1139
1139
|
* Serializes information the current object
|
|
1140
1140
|
* @param writer Serialization writer to use to serialize this model
|
|
1141
1141
|
*/
|
|
1142
|
-
export declare function serializeFailureInfo(writer: SerializationWriter, failureInfo?: Partial<FailureInfo> | undefined): void;
|
|
1142
|
+
export declare function serializeFailureInfo(writer: SerializationWriter, failureInfo?: Partial<FailureInfo> | undefined | null): void;
|
|
1143
1143
|
/**
|
|
1144
1144
|
* Serializes information the current object
|
|
1145
1145
|
* @param writer Serialization writer to use to serialize this model
|
|
1146
1146
|
*/
|
|
1147
|
-
export declare function serializeFeedbackTokenSet(writer: SerializationWriter, feedbackTokenSet?: Partial<FeedbackTokenSet> | undefined): void;
|
|
1147
|
+
export declare function serializeFeedbackTokenSet(writer: SerializationWriter, feedbackTokenSet?: Partial<FeedbackTokenSet> | undefined | null): void;
|
|
1148
1148
|
/**
|
|
1149
1149
|
* Serializes information the current object
|
|
1150
1150
|
* @param writer Serialization writer to use to serialize this model
|
|
1151
1151
|
*/
|
|
1152
|
-
export declare function serializeMedia(writer: SerializationWriter, media?: Partial<Media> | undefined): void;
|
|
1152
|
+
export declare function serializeMedia(writer: SerializationWriter, media?: Partial<Media> | undefined | null): void;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* Serializes information the current object
|
|
1155
1155
|
* @param writer Serialization writer to use to serialize this model
|
|
1156
1156
|
*/
|
|
1157
|
-
export declare function serializeMediaStream(writer: SerializationWriter, mediaStream?: Partial<MediaStream> | undefined): void;
|
|
1157
|
+
export declare function serializeMediaStream(writer: SerializationWriter, mediaStream?: Partial<MediaStream> | undefined | null): void;
|
|
1158
1158
|
/**
|
|
1159
1159
|
* Serializes information the current object
|
|
1160
1160
|
* @param writer Serialization writer to use to serialize this model
|
|
1161
1161
|
*/
|
|
1162
|
-
export declare function serializeNetworkInfo(writer: SerializationWriter, networkInfo?: Partial<NetworkInfo> | undefined): void;
|
|
1162
|
+
export declare function serializeNetworkInfo(writer: SerializationWriter, networkInfo?: Partial<NetworkInfo> | undefined | null): void;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* Serializes information the current object
|
|
1165
1165
|
* @param writer Serialization writer to use to serialize this model
|
|
1166
1166
|
*/
|
|
1167
|
-
export declare function serializeOrganizer(writer: SerializationWriter, organizer?: Partial<Organizer> | undefined): void;
|
|
1167
|
+
export declare function serializeOrganizer(writer: SerializationWriter, organizer?: Partial<Organizer> | undefined | null): void;
|
|
1168
1168
|
/**
|
|
1169
1169
|
* Serializes information the current object
|
|
1170
1170
|
* @param writer Serialization writer to use to serialize this model
|
|
1171
1171
|
*/
|
|
1172
|
-
export declare function serializeParticipant(writer: SerializationWriter, participant?: Partial<Participant> | undefined): void;
|
|
1172
|
+
export declare function serializeParticipant(writer: SerializationWriter, participant?: Partial<Participant> | undefined | null): void;
|
|
1173
1173
|
/**
|
|
1174
1174
|
* Serializes information the current object
|
|
1175
1175
|
* @param writer Serialization writer to use to serialize this model
|
|
1176
1176
|
*/
|
|
1177
|
-
export declare function serializeParticipantBase(writer: SerializationWriter, participantBase?: Partial<ParticipantBase> | undefined): void;
|
|
1177
|
+
export declare function serializeParticipantBase(writer: SerializationWriter, participantBase?: Partial<ParticipantBase> | undefined | null): void;
|
|
1178
1178
|
/**
|
|
1179
1179
|
* Serializes information the current object
|
|
1180
1180
|
* @param writer Serialization writer to use to serialize this model
|
|
1181
1181
|
*/
|
|
1182
|
-
export declare function serializeParticipantCollectionResponse(writer: SerializationWriter, participantCollectionResponse?: Partial<ParticipantCollectionResponse> | undefined): void;
|
|
1182
|
+
export declare function serializeParticipantCollectionResponse(writer: SerializationWriter, participantCollectionResponse?: Partial<ParticipantCollectionResponse> | undefined | null): void;
|
|
1183
1183
|
/**
|
|
1184
1184
|
* Serializes information the current object
|
|
1185
1185
|
* @param writer Serialization writer to use to serialize this model
|
|
1186
1186
|
*/
|
|
1187
|
-
export declare function serializeParticipantEndpoint(writer: SerializationWriter, participantEndpoint?: Partial<ParticipantEndpoint> | undefined): void;
|
|
1187
|
+
export declare function serializeParticipantEndpoint(writer: SerializationWriter, participantEndpoint?: Partial<ParticipantEndpoint> | undefined | null): void;
|
|
1188
1188
|
/**
|
|
1189
1189
|
* Serializes information the current object
|
|
1190
1190
|
* @param writer Serialization writer to use to serialize this model
|
|
1191
1191
|
*/
|
|
1192
|
-
export declare function serializePstnCallLogRow(writer: SerializationWriter, pstnCallLogRow?: Partial<PstnCallLogRow> | undefined): void;
|
|
1192
|
+
export declare function serializePstnCallLogRow(writer: SerializationWriter, pstnCallLogRow?: Partial<PstnCallLogRow> | undefined | null): void;
|
|
1193
1193
|
/**
|
|
1194
1194
|
* Serializes information the current object
|
|
1195
1195
|
* @param writer Serialization writer to use to serialize this model
|
|
1196
1196
|
*/
|
|
1197
|
-
export declare function serializeSegment(writer: SerializationWriter, segment?: Partial<Segment> | undefined): void;
|
|
1197
|
+
export declare function serializeSegment(writer: SerializationWriter, segment?: Partial<Segment> | undefined | null): void;
|
|
1198
1198
|
/**
|
|
1199
1199
|
* Serializes information the current object
|
|
1200
1200
|
* @param writer Serialization writer to use to serialize this model
|
|
1201
1201
|
*/
|
|
1202
|
-
export declare function serializeSegmentCollectionResponse(writer: SerializationWriter, segmentCollectionResponse?: Partial<SegmentCollectionResponse> | undefined): void;
|
|
1202
|
+
export declare function serializeSegmentCollectionResponse(writer: SerializationWriter, segmentCollectionResponse?: Partial<SegmentCollectionResponse> | undefined | null): void;
|
|
1203
1203
|
/**
|
|
1204
1204
|
* Serializes information the current object
|
|
1205
1205
|
* @param writer Serialization writer to use to serialize this model
|
|
1206
1206
|
*/
|
|
1207
|
-
export declare function serializeServiceEndpoint(writer: SerializationWriter, serviceEndpoint?: Partial<ServiceEndpoint> | undefined): void;
|
|
1207
|
+
export declare function serializeServiceEndpoint(writer: SerializationWriter, serviceEndpoint?: Partial<ServiceEndpoint> | undefined | null): void;
|
|
1208
1208
|
/**
|
|
1209
1209
|
* Serializes information the current object
|
|
1210
1210
|
* @param writer Serialization writer to use to serialize this model
|
|
1211
1211
|
*/
|
|
1212
|
-
export declare function serializeServiceUserAgent(writer: SerializationWriter, serviceUserAgent?: Partial<ServiceUserAgent> | undefined): void;
|
|
1212
|
+
export declare function serializeServiceUserAgent(writer: SerializationWriter, serviceUserAgent?: Partial<ServiceUserAgent> | undefined | null): void;
|
|
1213
1213
|
/**
|
|
1214
1214
|
* Serializes information the current object
|
|
1215
1215
|
* @param writer Serialization writer to use to serialize this model
|
|
1216
1216
|
*/
|
|
1217
|
-
export declare function serializeSession(writer: SerializationWriter, session?: Partial<Session> | undefined): void;
|
|
1217
|
+
export declare function serializeSession(writer: SerializationWriter, session?: Partial<Session> | undefined | null): void;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* Serializes information the current object
|
|
1220
1220
|
* @param writer Serialization writer to use to serialize this model
|
|
1221
1221
|
*/
|
|
1222
|
-
export declare function serializeSessionCollectionResponse(writer: SerializationWriter, sessionCollectionResponse?: Partial<SessionCollectionResponse> | undefined): void;
|
|
1222
|
+
export declare function serializeSessionCollectionResponse(writer: SerializationWriter, sessionCollectionResponse?: Partial<SessionCollectionResponse> | undefined | null): void;
|
|
1223
1223
|
/**
|
|
1224
1224
|
* Serializes information the current object
|
|
1225
1225
|
* @param writer Serialization writer to use to serialize this model
|
|
1226
1226
|
*/
|
|
1227
|
-
export declare function serializeTraceRouteHop(writer: SerializationWriter, traceRouteHop?: Partial<TraceRouteHop> | undefined): void;
|
|
1227
|
+
export declare function serializeTraceRouteHop(writer: SerializationWriter, traceRouteHop?: Partial<TraceRouteHop> | undefined | null): void;
|
|
1228
1228
|
/**
|
|
1229
1229
|
* Serializes information the current object
|
|
1230
1230
|
* @param writer Serialization writer to use to serialize this model
|
|
1231
1231
|
*/
|
|
1232
|
-
export declare function serializeUserAgent(writer: SerializationWriter, userAgent?: Partial<UserAgent> | undefined): void;
|
|
1232
|
+
export declare function serializeUserAgent(writer: SerializationWriter, userAgent?: Partial<UserAgent> | undefined | null): void;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* Serializes information the current object
|
|
1235
1235
|
* @param writer Serialization writer to use to serialize this model
|
|
1236
1236
|
*/
|
|
1237
|
-
export declare function serializeUserFeedback(writer: SerializationWriter, userFeedback?: Partial<UserFeedback> | undefined): void;
|
|
1237
|
+
export declare function serializeUserFeedback(writer: SerializationWriter, userFeedback?: Partial<UserFeedback> | undefined | null): void;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* Serializes information the current object
|
|
1240
1240
|
* @param writer Serialization writer to use to serialize this model
|
|
1241
1241
|
*/
|
|
1242
|
-
export declare function serializeUserIdentity(writer: SerializationWriter, userIdentity?: Partial<UserIdentity> | undefined): void;
|
|
1242
|
+
export declare function serializeUserIdentity(writer: SerializationWriter, userIdentity?: Partial<UserIdentity> | undefined | null): void;
|
|
1243
1243
|
export interface ServiceEndpoint extends Endpoint, Parsable {
|
|
1244
1244
|
}
|
|
1245
1245
|
export type ServiceRole = (typeof ServiceRoleObject)[keyof typeof ServiceRoleObject];
|
|
@@ -1247,47 +1247,47 @@ export interface ServiceUserAgent extends Parsable, UserAgent {
|
|
|
1247
1247
|
/**
|
|
1248
1248
|
* The role property
|
|
1249
1249
|
*/
|
|
1250
|
-
role?: ServiceRole;
|
|
1250
|
+
role?: ServiceRole | null;
|
|
1251
1251
|
}
|
|
1252
1252
|
export interface Session extends Entity, Parsable {
|
|
1253
1253
|
/**
|
|
1254
1254
|
* Endpoint that answered the session.
|
|
1255
1255
|
*/
|
|
1256
|
-
callee?: Endpoint;
|
|
1256
|
+
callee?: Endpoint | null;
|
|
1257
1257
|
/**
|
|
1258
1258
|
* Endpoint that initiated the session.
|
|
1259
1259
|
*/
|
|
1260
|
-
caller?: Endpoint;
|
|
1260
|
+
caller?: Endpoint | null;
|
|
1261
1261
|
/**
|
|
1262
1262
|
* UTC time when the last user left the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
1263
1263
|
*/
|
|
1264
|
-
endDateTime?: Date;
|
|
1264
|
+
endDateTime?: Date | null;
|
|
1265
1265
|
/**
|
|
1266
1266
|
* Failure information associated with the session if the session failed.
|
|
1267
1267
|
*/
|
|
1268
|
-
failureInfo?: FailureInfo;
|
|
1268
|
+
failureInfo?: FailureInfo | null;
|
|
1269
1269
|
/**
|
|
1270
1270
|
* Specifies whether the session is a test.
|
|
1271
1271
|
*/
|
|
1272
|
-
isTest?: boolean;
|
|
1272
|
+
isTest?: boolean | null;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* List of modalities present in the session. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
|
|
1275
1275
|
*/
|
|
1276
|
-
modalities?: Modality[];
|
|
1276
|
+
modalities?: Modality[] | null;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* The list of segments involved in the session. Read-only. Nullable.
|
|
1279
1279
|
*/
|
|
1280
|
-
segments?: Segment[];
|
|
1280
|
+
segments?: Segment[] | null;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* UTC time when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
|
1283
1283
|
*/
|
|
1284
|
-
startDateTime?: Date;
|
|
1284
|
+
startDateTime?: Date | null;
|
|
1285
1285
|
}
|
|
1286
1286
|
export interface SessionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
|
|
1287
1287
|
/**
|
|
1288
1288
|
* The value property
|
|
1289
1289
|
*/
|
|
1290
|
-
value?: Session[];
|
|
1290
|
+
value?: Session[] | null;
|
|
1291
1291
|
}
|
|
1292
1292
|
export interface TraceRouteHop extends AdditionalDataHolder, BackedModel, Parsable {
|
|
1293
1293
|
/**
|
|
@@ -1297,23 +1297,23 @@ export interface TraceRouteHop extends AdditionalDataHolder, BackedModel, Parsab
|
|
|
1297
1297
|
/**
|
|
1298
1298
|
* Stores model information.
|
|
1299
1299
|
*/
|
|
1300
|
-
backingStoreEnabled?: boolean;
|
|
1300
|
+
backingStoreEnabled?: boolean | null;
|
|
1301
1301
|
/**
|
|
1302
1302
|
* The network path count of this hop that was used to compute the RTT.
|
|
1303
1303
|
*/
|
|
1304
|
-
hopCount?: number;
|
|
1304
|
+
hopCount?: number | null;
|
|
1305
1305
|
/**
|
|
1306
1306
|
* IP address used for this hop in the network trace.
|
|
1307
1307
|
*/
|
|
1308
|
-
ipAddress?: string;
|
|
1308
|
+
ipAddress?: string | null;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* The OdataType property
|
|
1311
1311
|
*/
|
|
1312
|
-
odataType?: string;
|
|
1312
|
+
odataType?: string | null;
|
|
1313
1313
|
/**
|
|
1314
1314
|
* The time from when the trace route packet was sent from the client to this hop and back to the client, denoted in ISO 8601 format. For example, 1 second is denoted as PT1S, where P is the duration designator, T is the time designator, and S is the second designator.
|
|
1315
1315
|
*/
|
|
1316
|
-
roundTripTime?: Duration;
|
|
1316
|
+
roundTripTime?: Duration | null;
|
|
1317
1317
|
}
|
|
1318
1318
|
export interface UserAgent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
1319
1319
|
/**
|
|
@@ -1323,19 +1323,19 @@ export interface UserAgent extends AdditionalDataHolder, BackedModel, Parsable {
|
|
|
1323
1323
|
/**
|
|
1324
1324
|
* Identifies the version of application software used by this endpoint.
|
|
1325
1325
|
*/
|
|
1326
|
-
applicationVersion?: string;
|
|
1326
|
+
applicationVersion?: string | null;
|
|
1327
1327
|
/**
|
|
1328
1328
|
* Stores model information.
|
|
1329
1329
|
*/
|
|
1330
|
-
backingStoreEnabled?: boolean;
|
|
1330
|
+
backingStoreEnabled?: boolean | null;
|
|
1331
1331
|
/**
|
|
1332
1332
|
* User-agent header value reported by this endpoint.
|
|
1333
1333
|
*/
|
|
1334
|
-
headerValue?: string;
|
|
1334
|
+
headerValue?: string | null;
|
|
1335
1335
|
/**
|
|
1336
1336
|
* The OdataType property
|
|
1337
1337
|
*/
|
|
1338
|
-
odataType?: string;
|
|
1338
|
+
odataType?: string | null;
|
|
1339
1339
|
}
|
|
1340
1340
|
export interface UserFeedback extends AdditionalDataHolder, BackedModel, Parsable {
|
|
1341
1341
|
/**
|
|
@@ -1345,30 +1345,30 @@ export interface UserFeedback extends AdditionalDataHolder, BackedModel, Parsabl
|
|
|
1345
1345
|
/**
|
|
1346
1346
|
* Stores model information.
|
|
1347
1347
|
*/
|
|
1348
|
-
backingStoreEnabled?: boolean;
|
|
1348
|
+
backingStoreEnabled?: boolean | null;
|
|
1349
1349
|
/**
|
|
1350
1350
|
* The OdataType property
|
|
1351
1351
|
*/
|
|
1352
|
-
odataType?: string;
|
|
1352
|
+
odataType?: string | null;
|
|
1353
1353
|
/**
|
|
1354
1354
|
* The rating property
|
|
1355
1355
|
*/
|
|
1356
|
-
rating?: UserFeedbackRating;
|
|
1356
|
+
rating?: UserFeedbackRating | null;
|
|
1357
1357
|
/**
|
|
1358
1358
|
* The feedback text provided by the user of this endpoint for the session.
|
|
1359
1359
|
*/
|
|
1360
|
-
text?: string;
|
|
1360
|
+
text?: string | null;
|
|
1361
1361
|
/**
|
|
1362
1362
|
* The set of feedback tokens provided by the user of this endpoint for the session. This is a set of Boolean properties. The property names should not be relied upon since they may change depending on what tokens are offered to the user.
|
|
1363
1363
|
*/
|
|
1364
|
-
tokens?: FeedbackTokenSet;
|
|
1364
|
+
tokens?: FeedbackTokenSet | null;
|
|
1365
1365
|
}
|
|
1366
1366
|
export type UserFeedbackRating = (typeof UserFeedbackRatingObject)[keyof typeof UserFeedbackRatingObject];
|
|
1367
1367
|
export interface UserIdentity extends Identity, Parsable {
|
|
1368
1368
|
/**
|
|
1369
1369
|
* The userPrincipalName property
|
|
1370
1370
|
*/
|
|
1371
|
-
userPrincipalName?: string;
|
|
1371
|
+
userPrincipalName?: string | null;
|
|
1372
1372
|
}
|
|
1373
1373
|
export type VideoCodec = (typeof VideoCodecObject)[keyof typeof VideoCodecObject];
|
|
1374
1374
|
export type WifiBand = (typeof WifiBandObject)[keyof typeof WifiBandObject];
|