@@ -90,23 +90,22 @@ export interface IdentitySet {
90
90
user ?: NullableOption < Identity > ;
91
91
}
92
92
93
-
94
93
export namespace CallRecords {
95
- export type CallType = "unknown" | "groupCall" ;
96
- export type ClientPlatform = "unknown" | "windows" ;
97
- export type FailureStage = "unknown" | "callSetup" ;
98
- export type MediaStreamDirection = "callerToCallee" | "calleeToCaller" ;
99
- export type NetworkConnectionType = "unknown" | "wired" ;
100
- export type ProductFamily = "unknown" | "teams" ;
101
- export type ServiceRole = "unknown" | "customBot" ;
102
- export type UserFeedbackRating = "notRated" | "bad" ;
103
- export type WifiBand = "unknown" | "frequency24GHz" ;
104
- export type WifiRadioType = "unknown" | "wifi80211a" ;
105
- export type Modality = "audio" | "video" ;
106
- export interface SingletonEntity1 extends microsoftgraph . Entity {
94
+ type CallType = "unknown" | "groupCall" ;
95
+ type ClientPlatform = "unknown" | "windows" ;
96
+ type FailureStage = "unknown" | "callSetup" ;
97
+ type MediaStreamDirection = "callerToCallee" | "calleeToCaller" ;
98
+ type NetworkConnectionType = "unknown" | "wired" ;
99
+ type ProductFamily = "unknown" | "teams" ;
100
+ type ServiceRole = "unknown" | "customBot" ;
101
+ type UserFeedbackRating = "notRated" | "bad" ;
102
+ type WifiBand = "unknown" | "frequency24GHz" ;
103
+ type WifiRadioType = "unknown" | "wifi80211a" ;
104
+ type Modality = "audio" | "video" ;
105
+ interface SingletonEntity1 extends microsoftgraph . Entity {
107
106
testSingleNav ?: NullableOption < microsoftgraph . TestType > ;
108
107
}
109
- export interface CallRecord extends microsoftgraph . Entity {
108
+ interface CallRecord extends microsoftgraph . Entity {
110
109
version ?: number ;
111
110
type ?: CallType ;
112
111
modalities ?: Modality [ ] ;
@@ -119,7 +118,7 @@ export namespace CallRecords {
119
118
sessions ?: NullableOption < Session [ ] > ;
120
119
recipients ?: NullableOption < microsoftgraph . EntityType2 [ ] > ;
121
120
}
122
- export interface Session extends microsoftgraph . Entity {
121
+ interface Session extends microsoftgraph . Entity {
123
122
modalities ?: Modality [ ] ;
124
123
startDateTime ?: string ;
125
124
endDateTime ?: string ;
@@ -128,7 +127,7 @@ export namespace CallRecords {
128
127
failureInfo ?: NullableOption < FailureInfo > ;
129
128
segments ?: NullableOption < Segment [ ] > ;
130
129
}
131
- export interface Segment extends microsoftgraph . Entity {
130
+ interface Segment extends microsoftgraph . Entity {
132
131
startDateTime ?: string ;
133
132
endDateTime ?: string ;
134
133
caller ?: NullableOption < Endpoint > ;
@@ -141,42 +140,42 @@ export namespace CallRecords {
141
140
photo ?: NullableOption < Photo > ;
142
141
}
143
142
// tslint:disable-next-line: no-empty-interface
144
- export interface Option extends microsoftgraph . Entity { }
145
- export interface Photo extends microsoftgraph . Entity {
143
+ interface Option extends microsoftgraph . Entity { }
144
+ interface Photo extends microsoftgraph . Entity {
146
145
failureInfo ?: NullableOption < FailureInfo > ;
147
146
option ?: NullableOption < Option > ;
148
147
}
149
- export interface Endpoint {
148
+ interface Endpoint {
150
149
userAgent ?: NullableOption < UserAgent > ;
151
150
}
152
- export interface UserAgent {
151
+ interface UserAgent {
153
152
headerValue ?: NullableOption < string > ;
154
153
applicationVersion ?: NullableOption < string > ;
155
154
}
156
- export interface FailureInfo {
155
+ interface FailureInfo {
157
156
stage ?: FailureStage ;
158
157
reason ?: NullableOption < string > ;
159
158
}
160
- export interface Media {
159
+ interface Media {
161
160
label ?: NullableOption < string > ;
162
161
callerNetwork ?: NullableOption < NetworkInfo > ;
163
162
callerDevice ?: NullableOption < DeviceInfo > ;
164
163
streams ?: NullableOption < MediaStream [ ] > ;
165
164
}
166
- export interface NetworkInfo {
165
+ interface NetworkInfo {
167
166
connectionType ?: NetworkConnectionType ;
168
167
wifiBand ?: WifiBand ;
169
168
basicServiceSetIdentifier ?: NullableOption < string > ;
170
169
wifiRadioType ?: WifiRadioType ;
171
170
wifiSignalStrength ?: NullableOption < number > ;
172
171
bandwidthLowEventRatio ?: NullableOption < number > ;
173
172
}
174
- export interface DeviceInfo {
173
+ interface DeviceInfo {
175
174
captureDeviceName ?: NullableOption < string > ;
176
175
sentSignalLevel ?: NullableOption < number > ;
177
176
speakerGlitchRate ?: NullableOption < number > ;
178
177
}
179
- export interface MediaStream {
178
+ interface MediaStream {
180
179
streamId ?: NullableOption < string > ;
181
180
startDateTime ?: NullableOption < string > ;
182
181
streamDirection ?: MediaStreamDirection ;
@@ -185,25 +184,24 @@ export namespace CallRecords {
185
184
lowVideoProcessingCapabilityRatio ?: NullableOption < number > ;
186
185
averageAudioNetworkJitter ?: NullableOption < string > ;
187
186
}
188
- export interface ParticipantEndpoint extends Endpoint {
187
+ interface ParticipantEndpoint extends Endpoint {
189
188
identity ?: NullableOption < microsoftgraph . IdentitySet > ;
190
189
feedback ?: NullableOption < UserFeedback > ;
191
190
}
192
- export interface UserFeedback {
191
+ interface UserFeedback {
193
192
text ?: NullableOption < string > ;
194
193
rating ?: UserFeedbackRating ;
195
194
tokens ?: NullableOption < FeedbackTokenSet > ;
196
195
}
197
196
// tslint:disable-next-line: no-empty-interface
198
- export interface FeedbackTokenSet { }
197
+ interface FeedbackTokenSet { }
199
198
// tslint:disable-next-line: no-empty-interface
200
- export interface ServiceEndpoint extends Endpoint { }
201
- export interface ClientUserAgent extends UserAgent {
199
+ interface ServiceEndpoint extends Endpoint { }
200
+ interface ClientUserAgent extends UserAgent {
202
201
platform ?: ClientPlatform ;
203
202
productFamily ?: ProductFamily ;
204
203
}
205
- export interface ServiceUserAgent extends UserAgent {
204
+ interface ServiceUserAgent extends UserAgent {
206
205
role ?: ServiceRole ;
207
206
}
208
207
}
209
-
0 commit comments