@microsoft/msgraph-sdk 1.0.0-preview.10

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.
Files changed (38) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +11 -0
  3. package/graphRequestAdapter.d.ts +15 -0
  4. package/graphRequestAdapter.d.ts.map +1 -0
  5. package/graphRequestAdapter.js +21 -0
  6. package/graphServiceClient.d.ts +19 -0
  7. package/graphServiceClient.d.ts.map +1 -0
  8. package/graphServiceClient.js +51 -0
  9. package/index.d.ts +3 -0
  10. package/index.d.ts.map +1 -0
  11. package/index.js +18 -0
  12. package/models/callRecords/index.d.ts +1414 -0
  13. package/models/callRecords/index.d.ts.map +1 -0
  14. package/models/callRecords/index.js +1104 -0
  15. package/models/externalConnectors/index.d.ts +975 -0
  16. package/models/externalConnectors/index.d.ts.map +1 -0
  17. package/models/externalConnectors/index.js +928 -0
  18. package/models/identityGovernance/index.d.ts +1334 -0
  19. package/models/identityGovernance/index.d.ts.map +1 -0
  20. package/models/identityGovernance/index.js +1189 -0
  21. package/models/index.d.ts +86017 -0
  22. package/models/index.d.ts.map +1 -0
  23. package/models/index.js +74768 -0
  24. package/models/oDataErrors/index.d.ts +158 -0
  25. package/models/oDataErrors/index.d.ts.map +1 -0
  26. package/models/oDataErrors/index.js +139 -0
  27. package/models/security/index.d.ts +6556 -0
  28. package/models/security/index.d.ts.map +1 -0
  29. package/models/security/index.js +5717 -0
  30. package/models/termStore/index.d.ts +454 -0
  31. package/models/termStore/index.d.ts.map +1 -0
  32. package/models/termStore/index.js +406 -0
  33. package/package.json +51 -0
  34. package/tsconfig.json +9 -0
  35. package/tsconfig.tsbuildinfo +1 -0
  36. package/version.d.ts +2 -0
  37. package/version.d.ts.map +1 -0
  38. package/version.js +4 -0
@@ -0,0 +1,1414 @@
1
+ import { type BaseCollectionPaginationCountResponse, type Entity, type IdentitySet } from '../';
2
+ import { type AdditionalDataHolder, type BackedModel, type Duration, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions';
3
+ export type AudioCodec = (typeof AudioCodecObject)[keyof typeof AudioCodecObject];
4
+ export interface CallRecord extends Entity, Parsable {
5
+ /**
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
+ */
8
+ endDateTime?: Date;
9
+ /**
10
+ * Meeting URL associated to the call. May not be available for a peerToPeer call record type.
11
+ */
12
+ joinWebUrl?: string;
13
+ /**
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
+ */
16
+ lastModifiedDateTime?: Date;
17
+ /**
18
+ * List of all the modalities used in the call. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
19
+ */
20
+ modalities?: Modality[];
21
+ /**
22
+ * The organizing party's identity.
23
+ */
24
+ organizer?: IdentitySet;
25
+ /**
26
+ * List of distinct identities involved in the call.
27
+ */
28
+ participants?: IdentitySet[];
29
+ /**
30
+ * 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.
31
+ */
32
+ sessions?: Session[];
33
+ /**
34
+ * 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.
35
+ */
36
+ startDateTime?: Date;
37
+ /**
38
+ * The type property
39
+ */
40
+ type?: CallType;
41
+ /**
42
+ * Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
43
+ */
44
+ version?: number;
45
+ }
46
+ export interface CallRecordCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
47
+ /**
48
+ * The value property
49
+ */
50
+ value?: CallRecord[];
51
+ }
52
+ export type CallType = (typeof CallTypeObject)[keyof typeof CallTypeObject];
53
+ export type ClientPlatform = (typeof ClientPlatformObject)[keyof typeof ClientPlatformObject];
54
+ export interface ClientUserAgent extends Parsable, UserAgent {
55
+ /**
56
+ * The unique identifier of the Microsoft Entra application used by this endpoint.
57
+ */
58
+ azureADAppId?: string;
59
+ /**
60
+ * Immutable resource identifier of the Azure Communication Service associated with this endpoint based on Communication Services APIs.
61
+ */
62
+ communicationServiceId?: string;
63
+ /**
64
+ * The platform property
65
+ */
66
+ platform?: ClientPlatform;
67
+ /**
68
+ * The productFamily property
69
+ */
70
+ productFamily?: ProductFamily;
71
+ }
72
+ /**
73
+ * Creates a new instance of the appropriate class based on discriminator value
74
+ * @param parseNode The parse node to use to read the discriminator value and create the object
75
+ * @returns a callRecordCollectionResponse
76
+ */
77
+ export declare function createCallRecordCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoCallRecordCollectionResponse;
78
+ /**
79
+ * Creates a new instance of the appropriate class based on discriminator value
80
+ * @param parseNode The parse node to use to read the discriminator value and create the object
81
+ * @returns a callRecord
82
+ */
83
+ export declare function createCallRecordFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoCallRecord;
84
+ /**
85
+ * Creates a new instance of the appropriate class based on discriminator value
86
+ * @param parseNode The parse node to use to read the discriminator value and create the object
87
+ * @returns a clientUserAgent
88
+ */
89
+ export declare function createClientUserAgentFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoClientUserAgent;
90
+ /**
91
+ * Creates a new instance of the appropriate class based on discriminator value
92
+ * @param parseNode The parse node to use to read the discriminator value and create the object
93
+ * @returns a deviceInfo
94
+ */
95
+ export declare function createDeviceInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoDeviceInfo;
96
+ /**
97
+ * Creates a new instance of the appropriate class based on discriminator value
98
+ * @param parseNode The parse node to use to read the discriminator value and create the object
99
+ * @returns a directRoutingLogRow
100
+ */
101
+ export declare function createDirectRoutingLogRowFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoDirectRoutingLogRow;
102
+ /**
103
+ * Creates a new instance of the appropriate class based on discriminator value
104
+ * @param parseNode The parse node to use to read the discriminator value and create the object
105
+ * @returns a endpoint
106
+ */
107
+ export declare function createEndpointFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoParticipantEndpoint;
108
+ /**
109
+ * Creates a new instance of the appropriate class based on discriminator value
110
+ * @param parseNode The parse node to use to read the discriminator value and create the object
111
+ * @returns a failureInfo
112
+ */
113
+ export declare function createFailureInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoFailureInfo;
114
+ /**
115
+ * Creates a new instance of the appropriate class based on discriminator value
116
+ * @param parseNode The parse node to use to read the discriminator value and create the object
117
+ * @returns a feedbackTokenSet
118
+ */
119
+ export declare function createFeedbackTokenSetFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoFeedbackTokenSet;
120
+ /**
121
+ * Creates a new instance of the appropriate class based on discriminator value
122
+ * @param parseNode The parse node to use to read the discriminator value and create the object
123
+ * @returns a media
124
+ */
125
+ export declare function createMediaFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoMedia;
126
+ /**
127
+ * Creates a new instance of the appropriate class based on discriminator value
128
+ * @param parseNode The parse node to use to read the discriminator value and create the object
129
+ * @returns a mediaStream
130
+ */
131
+ export declare function createMediaStreamFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoMediaStream;
132
+ /**
133
+ * Creates a new instance of the appropriate class based on discriminator value
134
+ * @param parseNode The parse node to use to read the discriminator value and create the object
135
+ * @returns a networkInfo
136
+ */
137
+ export declare function createNetworkInfoFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoNetworkInfo;
138
+ /**
139
+ * Creates a new instance of the appropriate class based on discriminator value
140
+ * @param parseNode The parse node to use to read the discriminator value and create the object
141
+ * @returns a participantEndpoint
142
+ */
143
+ export declare function createParticipantEndpointFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoParticipantEndpoint;
144
+ /**
145
+ * Creates a new instance of the appropriate class based on discriminator value
146
+ * @param parseNode The parse node to use to read the discriminator value and create the object
147
+ * @returns a pstnCallLogRow
148
+ */
149
+ export declare function createPstnCallLogRowFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoPstnCallLogRow;
150
+ /**
151
+ * Creates a new instance of the appropriate class based on discriminator value
152
+ * @param parseNode The parse node to use to read the discriminator value and create the object
153
+ * @returns a segmentCollectionResponse
154
+ */
155
+ export declare function createSegmentCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoSegmentCollectionResponse;
156
+ /**
157
+ * Creates a new instance of the appropriate class based on discriminator value
158
+ * @param parseNode The parse node to use to read the discriminator value and create the object
159
+ * @returns a segment
160
+ */
161
+ export declare function createSegmentFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoSegment;
162
+ /**
163
+ * Creates a new instance of the appropriate class based on discriminator value
164
+ * @param parseNode The parse node to use to read the discriminator value and create the object
165
+ * @returns a serviceEndpoint
166
+ */
167
+ export declare function createServiceEndpointFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoServiceEndpoint;
168
+ /**
169
+ * Creates a new instance of the appropriate class based on discriminator value
170
+ * @param parseNode The parse node to use to read the discriminator value and create the object
171
+ * @returns a serviceUserAgent
172
+ */
173
+ export declare function createServiceUserAgentFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoServiceUserAgent;
174
+ /**
175
+ * Creates a new instance of the appropriate class based on discriminator value
176
+ * @param parseNode The parse node to use to read the discriminator value and create the object
177
+ * @returns a sessionCollectionResponse
178
+ */
179
+ export declare function createSessionCollectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoSessionCollectionResponse;
180
+ /**
181
+ * Creates a new instance of the appropriate class based on discriminator value
182
+ * @param parseNode The parse node to use to read the discriminator value and create the object
183
+ * @returns a session
184
+ */
185
+ export declare function createSessionFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoSession;
186
+ /**
187
+ * Creates a new instance of the appropriate class based on discriminator value
188
+ * @param parseNode The parse node to use to read the discriminator value and create the object
189
+ * @returns a traceRouteHop
190
+ */
191
+ export declare function createTraceRouteHopFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoTraceRouteHop;
192
+ /**
193
+ * Creates a new instance of the appropriate class based on discriminator value
194
+ * @param parseNode The parse node to use to read the discriminator value and create the object
195
+ * @returns a userAgent
196
+ */
197
+ export declare function createUserAgentFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoClientUserAgent | typeof deserializeIntoServiceUserAgent;
198
+ /**
199
+ * Creates a new instance of the appropriate class based on discriminator value
200
+ * @param parseNode The parse node to use to read the discriminator value and create the object
201
+ * @returns a userFeedback
202
+ */
203
+ export declare function createUserFeedbackFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoUserFeedback;
204
+ /**
205
+ * The deserialization information for the current model
206
+ * @returns a Record<string, (node: ParseNode) => void>
207
+ */
208
+ export declare function deserializeIntoCallRecord(callRecord?: CallRecord | undefined): Record<string, (node: ParseNode) => void>;
209
+ /**
210
+ * The deserialization information for the current model
211
+ * @returns a Record<string, (node: ParseNode) => void>
212
+ */
213
+ export declare function deserializeIntoCallRecordCollectionResponse(callRecordCollectionResponse?: CallRecordCollectionResponse | undefined): Record<string, (node: ParseNode) => void>;
214
+ /**
215
+ * The deserialization information for the current model
216
+ * @returns a Record<string, (node: ParseNode) => void>
217
+ */
218
+ export declare function deserializeIntoClientUserAgent(clientUserAgent?: ClientUserAgent | undefined): Record<string, (node: ParseNode) => void>;
219
+ /**
220
+ * The deserialization information for the current model
221
+ * @returns a Record<string, (node: ParseNode) => void>
222
+ */
223
+ export declare function deserializeIntoDeviceInfo(deviceInfo?: DeviceInfo | undefined): Record<string, (node: ParseNode) => void>;
224
+ /**
225
+ * The deserialization information for the current model
226
+ * @returns a Record<string, (node: ParseNode) => void>
227
+ */
228
+ export declare function deserializeIntoDirectRoutingLogRow(directRoutingLogRow?: DirectRoutingLogRow | undefined): Record<string, (node: ParseNode) => void>;
229
+ /**
230
+ * The deserialization information for the current model
231
+ * @returns a Record<string, (node: ParseNode) => void>
232
+ */
233
+ export declare function deserializeIntoEndpoint(endpoint?: Endpoint | undefined): Record<string, (node: ParseNode) => void>;
234
+ /**
235
+ * The deserialization information for the current model
236
+ * @returns a Record<string, (node: ParseNode) => void>
237
+ */
238
+ export declare function deserializeIntoFailureInfo(failureInfo?: FailureInfo | undefined): Record<string, (node: ParseNode) => void>;
239
+ /**
240
+ * The deserialization information for the current model
241
+ * @returns a Record<string, (node: ParseNode) => void>
242
+ */
243
+ export declare function deserializeIntoFeedbackTokenSet(feedbackTokenSet?: FeedbackTokenSet | undefined): Record<string, (node: ParseNode) => void>;
244
+ /**
245
+ * The deserialization information for the current model
246
+ * @returns a Record<string, (node: ParseNode) => void>
247
+ */
248
+ export declare function deserializeIntoMedia(media?: Media | undefined): Record<string, (node: ParseNode) => void>;
249
+ /**
250
+ * The deserialization information for the current model
251
+ * @returns a Record<string, (node: ParseNode) => void>
252
+ */
253
+ export declare function deserializeIntoMediaStream(mediaStream?: MediaStream | undefined): Record<string, (node: ParseNode) => void>;
254
+ /**
255
+ * The deserialization information for the current model
256
+ * @returns a Record<string, (node: ParseNode) => void>
257
+ */
258
+ export declare function deserializeIntoNetworkInfo(networkInfo?: NetworkInfo | undefined): Record<string, (node: ParseNode) => void>;
259
+ /**
260
+ * The deserialization information for the current model
261
+ * @returns a Record<string, (node: ParseNode) => void>
262
+ */
263
+ export declare function deserializeIntoParticipantEndpoint(participantEndpoint?: ParticipantEndpoint | undefined): Record<string, (node: ParseNode) => void>;
264
+ /**
265
+ * The deserialization information for the current model
266
+ * @returns a Record<string, (node: ParseNode) => void>
267
+ */
268
+ export declare function deserializeIntoPstnCallLogRow(pstnCallLogRow?: PstnCallLogRow | undefined): Record<string, (node: ParseNode) => void>;
269
+ /**
270
+ * The deserialization information for the current model
271
+ * @returns a Record<string, (node: ParseNode) => void>
272
+ */
273
+ export declare function deserializeIntoSegment(segment?: Segment | undefined): Record<string, (node: ParseNode) => void>;
274
+ /**
275
+ * The deserialization information for the current model
276
+ * @returns a Record<string, (node: ParseNode) => void>
277
+ */
278
+ export declare function deserializeIntoSegmentCollectionResponse(segmentCollectionResponse?: SegmentCollectionResponse | undefined): Record<string, (node: ParseNode) => void>;
279
+ /**
280
+ * The deserialization information for the current model
281
+ * @returns a Record<string, (node: ParseNode) => void>
282
+ */
283
+ export declare function deserializeIntoServiceEndpoint(serviceEndpoint?: ServiceEndpoint | undefined): Record<string, (node: ParseNode) => void>;
284
+ /**
285
+ * The deserialization information for the current model
286
+ * @returns a Record<string, (node: ParseNode) => void>
287
+ */
288
+ export declare function deserializeIntoServiceUserAgent(serviceUserAgent?: ServiceUserAgent | undefined): Record<string, (node: ParseNode) => void>;
289
+ /**
290
+ * The deserialization information for the current model
291
+ * @returns a Record<string, (node: ParseNode) => void>
292
+ */
293
+ export declare function deserializeIntoSession(session?: Session | undefined): Record<string, (node: ParseNode) => void>;
294
+ /**
295
+ * The deserialization information for the current model
296
+ * @returns a Record<string, (node: ParseNode) => void>
297
+ */
298
+ export declare function deserializeIntoSessionCollectionResponse(sessionCollectionResponse?: SessionCollectionResponse | undefined): Record<string, (node: ParseNode) => void>;
299
+ /**
300
+ * The deserialization information for the current model
301
+ * @returns a Record<string, (node: ParseNode) => void>
302
+ */
303
+ export declare function deserializeIntoTraceRouteHop(traceRouteHop?: TraceRouteHop | undefined): Record<string, (node: ParseNode) => void>;
304
+ /**
305
+ * The deserialization information for the current model
306
+ * @returns a Record<string, (node: ParseNode) => void>
307
+ */
308
+ export declare function deserializeIntoUserAgent(userAgent?: UserAgent | undefined): Record<string, (node: ParseNode) => void>;
309
+ /**
310
+ * The deserialization information for the current model
311
+ * @returns a Record<string, (node: ParseNode) => void>
312
+ */
313
+ export declare function deserializeIntoUserFeedback(userFeedback?: UserFeedback | undefined): Record<string, (node: ParseNode) => void>;
314
+ export interface DeviceInfo extends AdditionalDataHolder, BackedModel, Parsable {
315
+ /**
316
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
317
+ */
318
+ additionalData?: Record<string, unknown>;
319
+ /**
320
+ * Stores model information.
321
+ */
322
+ backingStoreEnabled?: boolean;
323
+ /**
324
+ * Name of the capture device driver used by the media endpoint.
325
+ */
326
+ captureDeviceDriver?: string;
327
+ /**
328
+ * Name of the capture device used by the media endpoint.
329
+ */
330
+ captureDeviceName?: string;
331
+ /**
332
+ * Fraction of the call that the media endpoint detected the capture device was not working properly.
333
+ */
334
+ captureNotFunctioningEventRatio?: number;
335
+ /**
336
+ * 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.
337
+ */
338
+ cpuInsufficentEventRatio?: number;
339
+ /**
340
+ * Fraction of the call that the media endpoint detected clipping in the captured audio that caused poor quality of the audio being sent.
341
+ */
342
+ deviceClippingEventRatio?: number;
343
+ /**
344
+ * 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.
345
+ */
346
+ deviceGlitchEventRatio?: number;
347
+ /**
348
+ * Number of times during the call that the media endpoint detected howling or screeching audio.
349
+ */
350
+ howlingEventCount?: number;
351
+ /**
352
+ * The root mean square (RMS) of the incoming signal of up to the first 30 seconds of the call.
353
+ */
354
+ initialSignalLevelRootMeanSquare?: number;
355
+ /**
356
+ * Fraction of the call that the media endpoint detected low speech level that caused poor quality of the audio being sent.
357
+ */
358
+ lowSpeechLevelEventRatio?: number;
359
+ /**
360
+ * Fraction of the call that the media endpoint detected low speech to noise level that caused poor quality of the audio being sent.
361
+ */
362
+ lowSpeechToNoiseEventRatio?: number;
363
+ /**
364
+ * Glitches per 5 minute interval for the media endpoint's microphone.
365
+ */
366
+ micGlitchRate?: number;
367
+ /**
368
+ * The OdataType property
369
+ */
370
+ odataType?: string;
371
+ /**
372
+ * Average energy level of received audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
373
+ */
374
+ receivedNoiseLevel?: number;
375
+ /**
376
+ * Average energy level of received audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
377
+ */
378
+ receivedSignalLevel?: number;
379
+ /**
380
+ * Name of the render device driver used by the media endpoint.
381
+ */
382
+ renderDeviceDriver?: string;
383
+ /**
384
+ * Name of the render device used by the media endpoint.
385
+ */
386
+ renderDeviceName?: string;
387
+ /**
388
+ * Fraction of the call that media endpoint detected device render is muted.
389
+ */
390
+ renderMuteEventRatio?: number;
391
+ /**
392
+ * Fraction of the call that the media endpoint detected the render device was not working properly.
393
+ */
394
+ renderNotFunctioningEventRatio?: number;
395
+ /**
396
+ * Fraction of the call that media endpoint detected device render volume is set to 0.
397
+ */
398
+ renderZeroVolumeEventRatio?: number;
399
+ /**
400
+ * Average energy level of sent audio for audio classified as mono noise or left channel of stereo noise by the media endpoint.
401
+ */
402
+ sentNoiseLevel?: number;
403
+ /**
404
+ * Average energy level of sent audio for audio classified as mono speech, or left channel of stereo speech by the media endpoint.
405
+ */
406
+ sentSignalLevel?: number;
407
+ /**
408
+ * Glitches per 5 minute internal for the media endpoint's loudspeaker.
409
+ */
410
+ speakerGlitchRate?: number;
411
+ }
412
+ export interface DirectRoutingLogRow extends AdditionalDataHolder, BackedModel, Parsable {
413
+ /**
414
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
415
+ */
416
+ additionalData?: Record<string, unknown>;
417
+ /**
418
+ * Stores model information.
419
+ */
420
+ backingStoreEnabled?: boolean;
421
+ /**
422
+ * Number of the user or bot who received the call. E.164 format, but might include other data.
423
+ */
424
+ calleeNumber?: string;
425
+ /**
426
+ * In addition to the SIP codes, Microsoft has subcodes that indicate the specific issue.
427
+ */
428
+ callEndSubReason?: number;
429
+ /**
430
+ * Number of the user or bot who made the call. E.164 format, but might include other data.
431
+ */
432
+ callerNumber?: string;
433
+ /**
434
+ * Call type and direction.
435
+ */
436
+ callType?: string;
437
+ /**
438
+ * Identifier for the call that you can use when calling Microsoft Support. GUID.
439
+ */
440
+ correlationId?: string;
441
+ /**
442
+ * Duration of the call in seconds.
443
+ */
444
+ duration?: number;
445
+ /**
446
+ * Only exists for successful (fully established) calls. Time when call ended.
447
+ */
448
+ endDateTime?: Date;
449
+ /**
450
+ * Only exists for failed (not fully established) calls.
451
+ */
452
+ failureDateTime?: Date;
453
+ /**
454
+ * The code with which the call ended. For more information, see RFC 3261.
455
+ */
456
+ finalSipCode?: number;
457
+ /**
458
+ * Description of the SIP code and Microsoft subcode.
459
+ */
460
+ finalSipCodePhrase?: string;
461
+ /**
462
+ * Unique call identifier. GUID.
463
+ */
464
+ id?: string;
465
+ /**
466
+ * When the initial invite was sent.
467
+ */
468
+ inviteDateTime?: Date;
469
+ /**
470
+ * Indicates whether the trunk was enabled for media bypass.
471
+ */
472
+ mediaBypassEnabled?: boolean;
473
+ /**
474
+ * The datacenter used for media path in a nonbypass call.
475
+ */
476
+ mediaPathLocation?: string;
477
+ /**
478
+ * The OdataType property
479
+ */
480
+ odataType?: string;
481
+ /**
482
+ * The datacenter used for signaling for both bypass and nonbypass calls.
483
+ */
484
+ signalingLocation?: string;
485
+ /**
486
+ * Call start time.For failed and unanswered calls, this can be equal to the invite or failure time.
487
+ */
488
+ startDateTime?: Date;
489
+ /**
490
+ * Success or attempt.
491
+ */
492
+ successfulCall?: boolean;
493
+ /**
494
+ * Fully qualified domain name of the session border controller.
495
+ */
496
+ trunkFullyQualifiedDomainName?: string;
497
+ /**
498
+ * Display name of the user.
499
+ */
500
+ userDisplayName?: string;
501
+ /**
502
+ * Calling user's ID in Microsoft Graph. This and other user information is null/empty for bot call types. GUID.
503
+ */
504
+ userId?: string;
505
+ /**
506
+ * UserPrincipalName (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.
507
+ */
508
+ userPrincipalName?: string;
509
+ }
510
+ export interface Endpoint extends AdditionalDataHolder, BackedModel, Parsable {
511
+ /**
512
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
513
+ */
514
+ additionalData?: Record<string, unknown>;
515
+ /**
516
+ * Stores model information.
517
+ */
518
+ backingStoreEnabled?: boolean;
519
+ /**
520
+ * The OdataType property
521
+ */
522
+ odataType?: string;
523
+ /**
524
+ * User-agent reported by this endpoint.
525
+ */
526
+ userAgent?: UserAgent;
527
+ }
528
+ export interface FailureInfo extends AdditionalDataHolder, BackedModel, Parsable {
529
+ /**
530
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
531
+ */
532
+ additionalData?: Record<string, unknown>;
533
+ /**
534
+ * Stores model information.
535
+ */
536
+ backingStoreEnabled?: boolean;
537
+ /**
538
+ * The OdataType property
539
+ */
540
+ odataType?: string;
541
+ /**
542
+ * Classification of why a call or portion of a call failed.
543
+ */
544
+ reason?: string;
545
+ /**
546
+ * The stage property
547
+ */
548
+ stage?: FailureStage;
549
+ }
550
+ export type FailureStage = (typeof FailureStageObject)[keyof typeof FailureStageObject];
551
+ export interface FeedbackTokenSet extends AdditionalDataHolder, BackedModel, Parsable {
552
+ /**
553
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
554
+ */
555
+ additionalData?: Record<string, unknown>;
556
+ /**
557
+ * Stores model information.
558
+ */
559
+ backingStoreEnabled?: boolean;
560
+ /**
561
+ * The OdataType property
562
+ */
563
+ odataType?: string;
564
+ }
565
+ export interface Media extends AdditionalDataHolder, BackedModel, Parsable {
566
+ /**
567
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
568
+ */
569
+ additionalData?: Record<string, unknown>;
570
+ /**
571
+ * Stores model information.
572
+ */
573
+ backingStoreEnabled?: boolean;
574
+ /**
575
+ * Device information associated with the callee endpoint of this media.
576
+ */
577
+ calleeDevice?: DeviceInfo;
578
+ /**
579
+ * Network information associated with the callee endpoint of this media.
580
+ */
581
+ calleeNetwork?: NetworkInfo;
582
+ /**
583
+ * Device information associated with the caller endpoint of this media.
584
+ */
585
+ callerDevice?: DeviceInfo;
586
+ /**
587
+ * Network information associated with the caller endpoint of this media.
588
+ */
589
+ callerNetwork?: NetworkInfo;
590
+ /**
591
+ * How the media was identified during media negotiation stage.
592
+ */
593
+ label?: string;
594
+ /**
595
+ * The OdataType property
596
+ */
597
+ odataType?: string;
598
+ /**
599
+ * Network streams associated with this media.
600
+ */
601
+ streams?: MediaStream[];
602
+ }
603
+ export interface MediaStream extends AdditionalDataHolder, BackedModel, Parsable {
604
+ /**
605
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
606
+ */
607
+ additionalData?: Record<string, unknown>;
608
+ /**
609
+ * 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.
610
+ */
611
+ audioCodec?: AudioCodec;
612
+ /**
613
+ * Average Network Mean Opinion Score degradation for stream. Represents how much the network loss and jitter has impacted the quality of received audio.
614
+ */
615
+ averageAudioDegradation?: number;
616
+ /**
617
+ * 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.
618
+ */
619
+ averageAudioNetworkJitter?: Duration;
620
+ /**
621
+ * Average estimated bandwidth available between two endpoints in bits per second.
622
+ */
623
+ averageBandwidthEstimate?: number;
624
+ /**
625
+ * Average duration of the received freezing time in the video stream.
626
+ */
627
+ averageFreezeDuration?: Duration;
628
+ /**
629
+ * 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.
630
+ */
631
+ averageJitter?: Duration;
632
+ /**
633
+ * Average packet loss rate for stream.
634
+ */
635
+ averagePacketLossRate?: number;
636
+ /**
637
+ * Ratio of the number of audio frames with samples generated by packet loss concealment to the total number of audio frames.
638
+ */
639
+ averageRatioOfConcealedSamples?: number;
640
+ /**
641
+ * Average frames per second received for all video streams computed over the duration of the session.
642
+ */
643
+ averageReceivedFrameRate?: number;
644
+ /**
645
+ * 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.
646
+ */
647
+ averageRoundTripTime?: Duration;
648
+ /**
649
+ * Average percentage of video frames lost as displayed to the user.
650
+ */
651
+ averageVideoFrameLossPercentage?: number;
652
+ /**
653
+ * Average frames per second received for a video stream, computed over the duration of the session.
654
+ */
655
+ averageVideoFrameRate?: number;
656
+ /**
657
+ * Average fraction of packets lost, as specified in [RFC 3550][], computed over the duration of the session.
658
+ */
659
+ averageVideoPacketLossRate?: number;
660
+ /**
661
+ * Stores model information.
662
+ */
663
+ backingStoreEnabled?: boolean;
664
+ /**
665
+ * 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.
666
+ */
667
+ endDateTime?: Date;
668
+ /**
669
+ * Indicates whether the forward error correction (FEC) was used at some point during the session. The default value is null.
670
+ */
671
+ isAudioForwardErrorCorrectionUsed?: boolean;
672
+ /**
673
+ * Fraction of the call where frame rate is less than 7.5 frames per second.
674
+ */
675
+ lowFrameRateRatio?: number;
676
+ /**
677
+ * Fraction of the call that the client is running less than 70% expected video processing capability.
678
+ */
679
+ lowVideoProcessingCapabilityRatio?: number;
680
+ /**
681
+ * 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.
682
+ */
683
+ maxAudioNetworkJitter?: Duration;
684
+ /**
685
+ * 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.
686
+ */
687
+ maxJitter?: Duration;
688
+ /**
689
+ * Maximum packet loss rate for the stream.
690
+ */
691
+ maxPacketLossRate?: number;
692
+ /**
693
+ * Maximum ratio of packets concealed by the healer.
694
+ */
695
+ maxRatioOfConcealedSamples?: number;
696
+ /**
697
+ * 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.
698
+ */
699
+ maxRoundTripTime?: Duration;
700
+ /**
701
+ * The OdataType property
702
+ */
703
+ odataType?: string;
704
+ /**
705
+ * Packet count for the stream.
706
+ */
707
+ packetUtilization?: number;
708
+ /**
709
+ * Packet loss rate after FEC has been applied aggregated across all video streams and codecs.
710
+ */
711
+ postForwardErrorCorrectionPacketLossRate?: number;
712
+ /**
713
+ * Average duration of the received freezing time in the video stream represented in root mean square.
714
+ */
715
+ rmsFreezeDuration?: Duration;
716
+ /**
717
+ * 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.
718
+ */
719
+ startDateTime?: Date;
720
+ /**
721
+ * The streamDirection property
722
+ */
723
+ streamDirection?: MediaStreamDirection;
724
+ /**
725
+ * Unique identifier for the stream.
726
+ */
727
+ streamId?: string;
728
+ /**
729
+ * 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.
730
+ */
731
+ videoCodec?: VideoCodec;
732
+ /**
733
+ * True if the media stream bypassed the Mediation Server and went straight between client and PSTN Gateway/PBX, false otherwise.
734
+ */
735
+ wasMediaBypassed?: boolean;
736
+ }
737
+ export type MediaStreamDirection = (typeof MediaStreamDirectionObject)[keyof typeof MediaStreamDirectionObject];
738
+ export type Modality = (typeof ModalityObject)[keyof typeof ModalityObject];
739
+ export type NetworkConnectionType = (typeof NetworkConnectionTypeObject)[keyof typeof NetworkConnectionTypeObject];
740
+ export interface NetworkInfo extends AdditionalDataHolder, BackedModel, Parsable {
741
+ /**
742
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
743
+ */
744
+ additionalData?: Record<string, unknown>;
745
+ /**
746
+ * Stores model information.
747
+ */
748
+ backingStoreEnabled?: boolean;
749
+ /**
750
+ * 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.
751
+ */
752
+ bandwidthLowEventRatio?: number;
753
+ /**
754
+ * The wireless LAN basic service set identifier of the media endpoint used to connect to the network.
755
+ */
756
+ basicServiceSetIdentifier?: string;
757
+ /**
758
+ * The connectionType property
759
+ */
760
+ connectionType?: NetworkConnectionType;
761
+ /**
762
+ * 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.
763
+ */
764
+ delayEventRatio?: number;
765
+ /**
766
+ * DNS suffix associated with the network adapter of the media endpoint.
767
+ */
768
+ dnsSuffix?: string;
769
+ /**
770
+ * IP address of the media endpoint.
771
+ */
772
+ ipAddress?: string;
773
+ /**
774
+ * Link speed in bits per second reported by the network adapter used by the media endpoint.
775
+ */
776
+ linkSpeed?: number;
777
+ /**
778
+ * 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.
779
+ */
780
+ macAddress?: string;
781
+ /**
782
+ * The networkTransportProtocol property
783
+ */
784
+ networkTransportProtocol?: NetworkTransportProtocol;
785
+ /**
786
+ * The OdataType property
787
+ */
788
+ odataType?: string;
789
+ /**
790
+ * Network port number used by media endpoint.
791
+ */
792
+ port?: number;
793
+ /**
794
+ * Fraction of the call that the media endpoint detected the network was causing poor quality of the audio received.
795
+ */
796
+ receivedQualityEventRatio?: number;
797
+ /**
798
+ * 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.
799
+ */
800
+ reflexiveIPAddress?: string;
801
+ /**
802
+ * IP address of the media relay server allocated by the media endpoint.
803
+ */
804
+ relayIPAddress?: string;
805
+ /**
806
+ * Network port number allocated on the media relay server by the media endpoint.
807
+ */
808
+ relayPort?: number;
809
+ /**
810
+ * Fraction of the call that the media endpoint detected the network was causing poor quality of the audio sent.
811
+ */
812
+ sentQualityEventRatio?: number;
813
+ /**
814
+ * Subnet used for media stream by the media endpoint.
815
+ */
816
+ subnet?: string;
817
+ /**
818
+ * List of network trace route hops collected for this media stream.*
819
+ */
820
+ traceRouteHops?: TraceRouteHop[];
821
+ /**
822
+ * The wifiBand property
823
+ */
824
+ wifiBand?: WifiBand;
825
+ /**
826
+ * Estimated remaining battery charge in percentage reported by the media endpoint.
827
+ */
828
+ wifiBatteryCharge?: number;
829
+ /**
830
+ * WiFi channel used by the media endpoint.
831
+ */
832
+ wifiChannel?: number;
833
+ /**
834
+ * Name of the Microsoft WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.
835
+ */
836
+ wifiMicrosoftDriver?: string;
837
+ /**
838
+ * Version of the Microsoft WiFi driver used by the media endpoint.
839
+ */
840
+ wifiMicrosoftDriverVersion?: string;
841
+ /**
842
+ * The wifiRadioType property
843
+ */
844
+ wifiRadioType?: WifiRadioType;
845
+ /**
846
+ * WiFi signal strength in percentage reported by the media endpoint.
847
+ */
848
+ wifiSignalStrength?: number;
849
+ /**
850
+ * Name of the WiFi driver used by the media endpoint. Value may be localized based on the language used by endpoint.
851
+ */
852
+ wifiVendorDriver?: string;
853
+ /**
854
+ * Version of the WiFi driver used by the media endpoint.
855
+ */
856
+ wifiVendorDriverVersion?: string;
857
+ }
858
+ export type NetworkTransportProtocol = (typeof NetworkTransportProtocolObject)[keyof typeof NetworkTransportProtocolObject];
859
+ export interface ParticipantEndpoint extends Endpoint, Parsable {
860
+ /**
861
+ * CPU number of cores used by the media endpoint.
862
+ */
863
+ cpuCoresCount?: number;
864
+ /**
865
+ * CPU name used by the media endpoint.
866
+ */
867
+ cpuName?: string;
868
+ /**
869
+ * CPU processor speed used by the media endpoint.
870
+ */
871
+ cpuProcessorSpeedInMhz?: number;
872
+ /**
873
+ * The feedback provided by the user of this endpoint about the quality of the session.
874
+ */
875
+ feedback?: UserFeedback;
876
+ /**
877
+ * Identity associated with the endpoint.
878
+ */
879
+ identity?: IdentitySet;
880
+ /**
881
+ * Name of the device used by the media endpoint.
882
+ */
883
+ name?: string;
884
+ }
885
+ export type ProductFamily = (typeof ProductFamilyObject)[keyof typeof ProductFamilyObject];
886
+ export type PstnCallDurationSource = (typeof PstnCallDurationSourceObject)[keyof typeof PstnCallDurationSourceObject];
887
+ export interface PstnCallLogRow extends AdditionalDataHolder, BackedModel, Parsable {
888
+ /**
889
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
890
+ */
891
+ additionalData?: Record<string, unknown>;
892
+ /**
893
+ * Stores model information.
894
+ */
895
+ backingStoreEnabled?: boolean;
896
+ /**
897
+ * 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.
898
+ */
899
+ callDurationSource?: PstnCallDurationSource;
900
+ /**
901
+ * Number dialed in E.164 format.
902
+ */
903
+ calleeNumber?: string;
904
+ /**
905
+ * Number that received the call for inbound calls or the number dialed for outbound calls. E.164 format.
906
+ */
907
+ callerNumber?: string;
908
+ /**
909
+ * Call identifier. Not guaranteed to be unique.
910
+ */
911
+ callId?: string;
912
+ /**
913
+ * 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.
914
+ */
915
+ callType?: string;
916
+ /**
917
+ * Amount of money or cost of the call that is charged to your account.
918
+ */
919
+ charge?: number;
920
+ /**
921
+ * ID of the audio conference.
922
+ */
923
+ conferenceId?: string;
924
+ /**
925
+ * Connection fee price.
926
+ */
927
+ connectionCharge?: number;
928
+ /**
929
+ * Type of currency used to calculate the cost of the call. For details, see (ISO 4217.
930
+ */
931
+ currency?: string;
932
+ /**
933
+ * Whether the call was domestic (within a country or region) or international (outside a country or region), based on the user's location.
934
+ */
935
+ destinationContext?: string;
936
+ /**
937
+ * Country or region dialed.
938
+ */
939
+ destinationName?: string;
940
+ /**
941
+ * How long the call was connected, in seconds.
942
+ */
943
+ duration?: number;
944
+ /**
945
+ * Call end time.
946
+ */
947
+ endDateTime?: Date;
948
+ /**
949
+ * Unique call identifier. GUID.
950
+ */
951
+ id?: string;
952
+ /**
953
+ * User's phone number type, such as a service of toll-free number.
954
+ */
955
+ inventoryType?: string;
956
+ /**
957
+ * The license used for the call.
958
+ */
959
+ licenseCapability?: string;
960
+ /**
961
+ * The OdataType property
962
+ */
963
+ odataType?: string;
964
+ /**
965
+ * 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.
966
+ */
967
+ operator?: string;
968
+ /**
969
+ * Call start time.
970
+ */
971
+ startDateTime?: Date;
972
+ /**
973
+ * Country code of the tenant. For details, see ISO 3166-1 alpha-2.
974
+ */
975
+ tenantCountryCode?: string;
976
+ /**
977
+ * Country code of the user. For details, see ISO 3166-1 alpha-2.
978
+ */
979
+ usageCountryCode?: string;
980
+ /**
981
+ * Display name of the user.
982
+ */
983
+ userDisplayName?: string;
984
+ /**
985
+ * Calling user's ID in Microsoft Graph. GUID. This and other user info will be null/empty for bot call types (ucapin, ucapout).
986
+ */
987
+ userId?: string;
988
+ /**
989
+ * 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.
990
+ */
991
+ userPrincipalName?: string;
992
+ }
993
+ export interface Segment extends Entity, Parsable {
994
+ /**
995
+ * Endpoint that answered this segment.
996
+ */
997
+ callee?: Endpoint;
998
+ /**
999
+ * Endpoint that initiated this segment.
1000
+ */
1001
+ caller?: Endpoint;
1002
+ /**
1003
+ * 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
1004
+ */
1005
+ endDateTime?: Date;
1006
+ /**
1007
+ * Failure information associated with the segment if it failed.
1008
+ */
1009
+ failureInfo?: FailureInfo;
1010
+ /**
1011
+ * Media associated with this segment.
1012
+ */
1013
+ media?: Media[];
1014
+ /**
1015
+ * 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
1016
+ */
1017
+ startDateTime?: Date;
1018
+ }
1019
+ export interface SegmentCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
1020
+ /**
1021
+ * The value property
1022
+ */
1023
+ value?: Segment[];
1024
+ }
1025
+ /**
1026
+ * Serializes information the current object
1027
+ * @param writer Serialization writer to use to serialize this model
1028
+ */
1029
+ export declare function serializeCallRecord(writer: SerializationWriter, callRecord?: CallRecord | undefined): void;
1030
+ /**
1031
+ * Serializes information the current object
1032
+ * @param writer Serialization writer to use to serialize this model
1033
+ */
1034
+ export declare function serializeCallRecordCollectionResponse(writer: SerializationWriter, callRecordCollectionResponse?: CallRecordCollectionResponse | undefined): void;
1035
+ /**
1036
+ * Serializes information the current object
1037
+ * @param writer Serialization writer to use to serialize this model
1038
+ */
1039
+ export declare function serializeClientUserAgent(writer: SerializationWriter, clientUserAgent?: ClientUserAgent | undefined): void;
1040
+ /**
1041
+ * Serializes information the current object
1042
+ * @param writer Serialization writer to use to serialize this model
1043
+ */
1044
+ export declare function serializeDeviceInfo(writer: SerializationWriter, deviceInfo?: DeviceInfo | undefined): void;
1045
+ /**
1046
+ * Serializes information the current object
1047
+ * @param writer Serialization writer to use to serialize this model
1048
+ */
1049
+ export declare function serializeDirectRoutingLogRow(writer: SerializationWriter, directRoutingLogRow?: DirectRoutingLogRow | undefined): void;
1050
+ /**
1051
+ * Serializes information the current object
1052
+ * @param writer Serialization writer to use to serialize this model
1053
+ */
1054
+ export declare function serializeEndpoint(writer: SerializationWriter, endpoint?: Endpoint | undefined): void;
1055
+ /**
1056
+ * Serializes information the current object
1057
+ * @param writer Serialization writer to use to serialize this model
1058
+ */
1059
+ export declare function serializeFailureInfo(writer: SerializationWriter, failureInfo?: FailureInfo | undefined): void;
1060
+ /**
1061
+ * Serializes information the current object
1062
+ * @param writer Serialization writer to use to serialize this model
1063
+ */
1064
+ export declare function serializeFeedbackTokenSet(writer: SerializationWriter, feedbackTokenSet?: FeedbackTokenSet | undefined): void;
1065
+ /**
1066
+ * Serializes information the current object
1067
+ * @param writer Serialization writer to use to serialize this model
1068
+ */
1069
+ export declare function serializeMedia(writer: SerializationWriter, media?: Media | undefined): void;
1070
+ /**
1071
+ * Serializes information the current object
1072
+ * @param writer Serialization writer to use to serialize this model
1073
+ */
1074
+ export declare function serializeMediaStream(writer: SerializationWriter, mediaStream?: MediaStream | undefined): void;
1075
+ /**
1076
+ * Serializes information the current object
1077
+ * @param writer Serialization writer to use to serialize this model
1078
+ */
1079
+ export declare function serializeNetworkInfo(writer: SerializationWriter, networkInfo?: NetworkInfo | undefined): void;
1080
+ /**
1081
+ * Serializes information the current object
1082
+ * @param writer Serialization writer to use to serialize this model
1083
+ */
1084
+ export declare function serializeParticipantEndpoint(writer: SerializationWriter, participantEndpoint?: ParticipantEndpoint | undefined): void;
1085
+ /**
1086
+ * Serializes information the current object
1087
+ * @param writer Serialization writer to use to serialize this model
1088
+ */
1089
+ export declare function serializePstnCallLogRow(writer: SerializationWriter, pstnCallLogRow?: PstnCallLogRow | undefined): void;
1090
+ /**
1091
+ * Serializes information the current object
1092
+ * @param writer Serialization writer to use to serialize this model
1093
+ */
1094
+ export declare function serializeSegment(writer: SerializationWriter, segment?: Segment | undefined): void;
1095
+ /**
1096
+ * Serializes information the current object
1097
+ * @param writer Serialization writer to use to serialize this model
1098
+ */
1099
+ export declare function serializeSegmentCollectionResponse(writer: SerializationWriter, segmentCollectionResponse?: SegmentCollectionResponse | undefined): void;
1100
+ /**
1101
+ * Serializes information the current object
1102
+ * @param writer Serialization writer to use to serialize this model
1103
+ */
1104
+ export declare function serializeServiceEndpoint(writer: SerializationWriter, serviceEndpoint?: ServiceEndpoint | undefined): void;
1105
+ /**
1106
+ * Serializes information the current object
1107
+ * @param writer Serialization writer to use to serialize this model
1108
+ */
1109
+ export declare function serializeServiceUserAgent(writer: SerializationWriter, serviceUserAgent?: ServiceUserAgent | undefined): void;
1110
+ /**
1111
+ * Serializes information the current object
1112
+ * @param writer Serialization writer to use to serialize this model
1113
+ */
1114
+ export declare function serializeSession(writer: SerializationWriter, session?: Session | undefined): void;
1115
+ /**
1116
+ * Serializes information the current object
1117
+ * @param writer Serialization writer to use to serialize this model
1118
+ */
1119
+ export declare function serializeSessionCollectionResponse(writer: SerializationWriter, sessionCollectionResponse?: SessionCollectionResponse | undefined): void;
1120
+ /**
1121
+ * Serializes information the current object
1122
+ * @param writer Serialization writer to use to serialize this model
1123
+ */
1124
+ export declare function serializeTraceRouteHop(writer: SerializationWriter, traceRouteHop?: TraceRouteHop | undefined): void;
1125
+ /**
1126
+ * Serializes information the current object
1127
+ * @param writer Serialization writer to use to serialize this model
1128
+ */
1129
+ export declare function serializeUserAgent(writer: SerializationWriter, userAgent?: UserAgent | undefined): void;
1130
+ /**
1131
+ * Serializes information the current object
1132
+ * @param writer Serialization writer to use to serialize this model
1133
+ */
1134
+ export declare function serializeUserFeedback(writer: SerializationWriter, userFeedback?: UserFeedback | undefined): void;
1135
+ export interface ServiceEndpoint extends Endpoint, Parsable {
1136
+ }
1137
+ export type ServiceRole = (typeof ServiceRoleObject)[keyof typeof ServiceRoleObject];
1138
+ export interface ServiceUserAgent extends Parsable, UserAgent {
1139
+ /**
1140
+ * The role property
1141
+ */
1142
+ role?: ServiceRole;
1143
+ }
1144
+ export interface Session extends Entity, Parsable {
1145
+ /**
1146
+ * Endpoint that answered the session.
1147
+ */
1148
+ callee?: Endpoint;
1149
+ /**
1150
+ * Endpoint that initiated the session.
1151
+ */
1152
+ caller?: Endpoint;
1153
+ /**
1154
+ * 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
1155
+ */
1156
+ endDateTime?: Date;
1157
+ /**
1158
+ * Failure information associated with the session if the session failed.
1159
+ */
1160
+ failureInfo?: FailureInfo;
1161
+ /**
1162
+ * Specifies whether the session is a test.
1163
+ */
1164
+ isTest?: boolean;
1165
+ /**
1166
+ * List of modalities present in the session. Possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue.
1167
+ */
1168
+ modalities?: Modality[];
1169
+ /**
1170
+ * The list of segments involved in the session. Read-only. Nullable.
1171
+ */
1172
+ segments?: Segment[];
1173
+ /**
1174
+ * 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
1175
+ */
1176
+ startDateTime?: Date;
1177
+ }
1178
+ export interface SessionCollectionResponse extends BaseCollectionPaginationCountResponse, Parsable {
1179
+ /**
1180
+ * The value property
1181
+ */
1182
+ value?: Session[];
1183
+ }
1184
+ export interface TraceRouteHop extends AdditionalDataHolder, BackedModel, Parsable {
1185
+ /**
1186
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
1187
+ */
1188
+ additionalData?: Record<string, unknown>;
1189
+ /**
1190
+ * Stores model information.
1191
+ */
1192
+ backingStoreEnabled?: boolean;
1193
+ /**
1194
+ * The network path count of this hop that was used to compute the RTT.
1195
+ */
1196
+ hopCount?: number;
1197
+ /**
1198
+ * IP address used for this hop in the network trace.
1199
+ */
1200
+ ipAddress?: string;
1201
+ /**
1202
+ * The OdataType property
1203
+ */
1204
+ odataType?: string;
1205
+ /**
1206
+ * 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.
1207
+ */
1208
+ roundTripTime?: Duration;
1209
+ }
1210
+ export interface UserAgent extends AdditionalDataHolder, BackedModel, Parsable {
1211
+ /**
1212
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
1213
+ */
1214
+ additionalData?: Record<string, unknown>;
1215
+ /**
1216
+ * Identifies the version of application software used by this endpoint.
1217
+ */
1218
+ applicationVersion?: string;
1219
+ /**
1220
+ * Stores model information.
1221
+ */
1222
+ backingStoreEnabled?: boolean;
1223
+ /**
1224
+ * User-agent header value reported by this endpoint.
1225
+ */
1226
+ headerValue?: string;
1227
+ /**
1228
+ * The OdataType property
1229
+ */
1230
+ odataType?: string;
1231
+ }
1232
+ export interface UserFeedback extends AdditionalDataHolder, BackedModel, Parsable {
1233
+ /**
1234
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
1235
+ */
1236
+ additionalData?: Record<string, unknown>;
1237
+ /**
1238
+ * Stores model information.
1239
+ */
1240
+ backingStoreEnabled?: boolean;
1241
+ /**
1242
+ * The OdataType property
1243
+ */
1244
+ odataType?: string;
1245
+ /**
1246
+ * The rating property
1247
+ */
1248
+ rating?: UserFeedbackRating;
1249
+ /**
1250
+ * The feedback text provided by the user of this endpoint for the session.
1251
+ */
1252
+ text?: string;
1253
+ /**
1254
+ * 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.
1255
+ */
1256
+ tokens?: FeedbackTokenSet;
1257
+ }
1258
+ export type UserFeedbackRating = (typeof UserFeedbackRatingObject)[keyof typeof UserFeedbackRatingObject];
1259
+ export type VideoCodec = (typeof VideoCodecObject)[keyof typeof VideoCodecObject];
1260
+ export type WifiBand = (typeof WifiBandObject)[keyof typeof WifiBandObject];
1261
+ export type WifiRadioType = (typeof WifiRadioTypeObject)[keyof typeof WifiRadioTypeObject];
1262
+ export declare const AudioCodecObject: {
1263
+ readonly Unknown: "unknown";
1264
+ readonly Invalid: "invalid";
1265
+ readonly Cn: "cn";
1266
+ readonly Pcma: "pcma";
1267
+ readonly Pcmu: "pcmu";
1268
+ readonly AmrWide: "amrWide";
1269
+ readonly G722: "g722";
1270
+ readonly G7221: "g7221";
1271
+ readonly G7221c: "g7221c";
1272
+ readonly G729: "g729";
1273
+ readonly MultiChannelAudio: "multiChannelAudio";
1274
+ readonly Muchv2: "muchv2";
1275
+ readonly Opus: "opus";
1276
+ readonly Satin: "satin";
1277
+ readonly SatinFullband: "satinFullband";
1278
+ readonly RtAudio8: "rtAudio8";
1279
+ readonly RtAudio16: "rtAudio16";
1280
+ readonly Silk: "silk";
1281
+ readonly SilkNarrow: "silkNarrow";
1282
+ readonly SilkWide: "silkWide";
1283
+ readonly Siren: "siren";
1284
+ readonly XmsRta: "xmsRta";
1285
+ readonly UnknownFutureValue: "unknownFutureValue";
1286
+ };
1287
+ export declare const CallTypeObject: {
1288
+ readonly Unknown: "unknown";
1289
+ readonly GroupCall: "groupCall";
1290
+ readonly PeerToPeer: "peerToPeer";
1291
+ readonly UnknownFutureValue: "unknownFutureValue";
1292
+ };
1293
+ export declare const ClientPlatformObject: {
1294
+ readonly Unknown: "unknown";
1295
+ readonly Windows: "windows";
1296
+ readonly MacOS: "macOS";
1297
+ readonly IOS: "iOS";
1298
+ readonly Android: "android";
1299
+ readonly Web: "web";
1300
+ readonly IpPhone: "ipPhone";
1301
+ readonly RoomSystem: "roomSystem";
1302
+ readonly SurfaceHub: "surfaceHub";
1303
+ readonly HoloLens: "holoLens";
1304
+ readonly UnknownFutureValue: "unknownFutureValue";
1305
+ };
1306
+ export declare const FailureStageObject: {
1307
+ readonly Unknown: "unknown";
1308
+ readonly CallSetup: "callSetup";
1309
+ readonly Midcall: "midcall";
1310
+ readonly UnknownFutureValue: "unknownFutureValue";
1311
+ };
1312
+ export declare const MediaStreamDirectionObject: {
1313
+ readonly CallerToCallee: "callerToCallee";
1314
+ readonly CalleeToCaller: "calleeToCaller";
1315
+ };
1316
+ export declare const ModalityObject: {
1317
+ readonly Audio: "audio";
1318
+ readonly Video: "video";
1319
+ readonly VideoBasedScreenSharing: "videoBasedScreenSharing";
1320
+ readonly Data: "data";
1321
+ readonly ScreenSharing: "screenSharing";
1322
+ readonly UnknownFutureValue: "unknownFutureValue";
1323
+ };
1324
+ export declare const NetworkConnectionTypeObject: {
1325
+ readonly Unknown: "unknown";
1326
+ readonly Wired: "wired";
1327
+ readonly Wifi: "wifi";
1328
+ readonly Mobile: "mobile";
1329
+ readonly Tunnel: "tunnel";
1330
+ readonly UnknownFutureValue: "unknownFutureValue";
1331
+ };
1332
+ export declare const NetworkTransportProtocolObject: {
1333
+ readonly Unknown: "unknown";
1334
+ readonly Udp: "udp";
1335
+ readonly Tcp: "tcp";
1336
+ readonly UnknownFutureValue: "unknownFutureValue";
1337
+ };
1338
+ export declare const ProductFamilyObject: {
1339
+ readonly Unknown: "unknown";
1340
+ readonly Teams: "teams";
1341
+ readonly SkypeForBusiness: "skypeForBusiness";
1342
+ readonly Lync: "lync";
1343
+ readonly UnknownFutureValue: "unknownFutureValue";
1344
+ readonly AzureCommunicationServices: "azureCommunicationServices";
1345
+ };
1346
+ export declare const PstnCallDurationSourceObject: {
1347
+ readonly Microsoft: "microsoft";
1348
+ readonly Operator: "operator";
1349
+ };
1350
+ export declare const ServiceRoleObject: {
1351
+ readonly Unknown: "unknown";
1352
+ readonly CustomBot: "customBot";
1353
+ readonly SkypeForBusinessMicrosoftTeamsGateway: "skypeForBusinessMicrosoftTeamsGateway";
1354
+ readonly SkypeForBusinessAudioVideoMcu: "skypeForBusinessAudioVideoMcu";
1355
+ readonly SkypeForBusinessApplicationSharingMcu: "skypeForBusinessApplicationSharingMcu";
1356
+ readonly SkypeForBusinessCallQueues: "skypeForBusinessCallQueues";
1357
+ readonly SkypeForBusinessAutoAttendant: "skypeForBusinessAutoAttendant";
1358
+ readonly MediationServer: "mediationServer";
1359
+ readonly MediationServerCloudConnectorEdition: "mediationServerCloudConnectorEdition";
1360
+ readonly ExchangeUnifiedMessagingService: "exchangeUnifiedMessagingService";
1361
+ readonly MediaController: "mediaController";
1362
+ readonly ConferencingAnnouncementService: "conferencingAnnouncementService";
1363
+ readonly ConferencingAttendant: "conferencingAttendant";
1364
+ readonly AudioTeleconferencerController: "audioTeleconferencerController";
1365
+ readonly SkypeForBusinessUnifiedCommunicationApplicationPlatform: "skypeForBusinessUnifiedCommunicationApplicationPlatform";
1366
+ readonly ResponseGroupServiceAnnouncementService: "responseGroupServiceAnnouncementService";
1367
+ readonly Gateway: "gateway";
1368
+ readonly SkypeTranslator: "skypeTranslator";
1369
+ readonly SkypeForBusinessAttendant: "skypeForBusinessAttendant";
1370
+ readonly ResponseGroupService: "responseGroupService";
1371
+ readonly Voicemail: "voicemail";
1372
+ readonly UnknownFutureValue: "unknownFutureValue";
1373
+ };
1374
+ export declare const UserFeedbackRatingObject: {
1375
+ readonly NotRated: "notRated";
1376
+ readonly Bad: "bad";
1377
+ readonly Poor: "poor";
1378
+ readonly Fair: "fair";
1379
+ readonly Good: "good";
1380
+ readonly Excellent: "excellent";
1381
+ readonly UnknownFutureValue: "unknownFutureValue";
1382
+ };
1383
+ export declare const VideoCodecObject: {
1384
+ readonly Unknown: "unknown";
1385
+ readonly Invalid: "invalid";
1386
+ readonly Av1: "av1";
1387
+ readonly H263: "h263";
1388
+ readonly H264: "h264";
1389
+ readonly H264s: "h264s";
1390
+ readonly H264uc: "h264uc";
1391
+ readonly H265: "h265";
1392
+ readonly Rtvc1: "rtvc1";
1393
+ readonly RtVideo: "rtVideo";
1394
+ readonly Xrtvc1: "xrtvc1";
1395
+ readonly UnknownFutureValue: "unknownFutureValue";
1396
+ };
1397
+ export declare const WifiBandObject: {
1398
+ readonly Unknown: "unknown";
1399
+ readonly Frequency24GHz: "frequency24GHz";
1400
+ readonly Frequency50GHz: "frequency50GHz";
1401
+ readonly Frequency60GHz: "frequency60GHz";
1402
+ readonly UnknownFutureValue: "unknownFutureValue";
1403
+ };
1404
+ export declare const WifiRadioTypeObject: {
1405
+ readonly Unknown: "unknown";
1406
+ readonly Wifi80211a: "wifi80211a";
1407
+ readonly Wifi80211b: "wifi80211b";
1408
+ readonly Wifi80211g: "wifi80211g";
1409
+ readonly Wifi80211n: "wifi80211n";
1410
+ readonly Wifi80211ac: "wifi80211ac";
1411
+ readonly Wifi80211ax: "wifi80211ax";
1412
+ readonly UnknownFutureValue: "unknownFutureValue";
1413
+ };
1414
+ //# sourceMappingURL=index.d.ts.map