@@ -149,8 +149,20 @@ public static class AsrResult {
149
149
150
150
private String errorMessage ;
151
151
152
+ private Long duration ;
153
+
154
+ private Integer interactiveCount ;
155
+
152
156
private List <SentenceResult > sentenceResults ;
153
157
158
+ private ServiceEvStat serviceEvStat ;
159
+
160
+ private ClientEvStat clientEvStat ;
161
+
162
+ private ServiceSrStat serviceSrStat ;
163
+
164
+ private ClientSrStat clientSrStat ;
165
+
154
166
public String getAsrstatus () {
155
167
return this .asrstatus ;
156
168
}
@@ -175,6 +187,22 @@ public void setErrorMessage(String errorMessage) {
175
187
this .errorMessage = errorMessage ;
176
188
}
177
189
190
+ public Long getDuration () {
191
+ return this .duration ;
192
+ }
193
+
194
+ public void setDuration (Long duration ) {
195
+ this .duration = duration ;
196
+ }
197
+
198
+ public Integer getInteractiveCount () {
199
+ return this .interactiveCount ;
200
+ }
201
+
202
+ public void setInteractiveCount (Integer interactiveCount ) {
203
+ this .interactiveCount = interactiveCount ;
204
+ }
205
+
178
206
public List <SentenceResult > getSentenceResults () {
179
207
return this .sentenceResults ;
180
208
}
@@ -183,6 +211,38 @@ public void setSentenceResults(List<SentenceResult> sentenceResults) {
183
211
this .sentenceResults = sentenceResults ;
184
212
}
185
213
214
+ public ServiceEvStat getServiceEvStat () {
215
+ return this .serviceEvStat ;
216
+ }
217
+
218
+ public void setServiceEvStat (ServiceEvStat serviceEvStat ) {
219
+ this .serviceEvStat = serviceEvStat ;
220
+ }
221
+
222
+ public ClientEvStat getClientEvStat () {
223
+ return this .clientEvStat ;
224
+ }
225
+
226
+ public void setClientEvStat (ClientEvStat clientEvStat ) {
227
+ this .clientEvStat = clientEvStat ;
228
+ }
229
+
230
+ public ServiceSrStat getServiceSrStat () {
231
+ return this .serviceSrStat ;
232
+ }
233
+
234
+ public void setServiceSrStat (ServiceSrStat serviceSrStat ) {
235
+ this .serviceSrStat = serviceSrStat ;
236
+ }
237
+
238
+ public ClientSrStat getClientSrStat () {
239
+ return this .clientSrStat ;
240
+ }
241
+
242
+ public void setClientSrStat (ClientSrStat clientSrStat ) {
243
+ this .clientSrStat = clientSrStat ;
244
+ }
245
+
186
246
public static class SentenceResult {
187
247
188
248
private Integer beginTime ;
@@ -285,6 +345,178 @@ public void setChannelKey(String channelKey) {
285
345
this .channelKey = channelKey ;
286
346
}
287
347
}
348
+
349
+ public static class ServiceEvStat {
350
+
351
+ private Integer srole ;
352
+
353
+ private Float smaxEmotionValue ;
354
+
355
+ private Float sminEmotionValue ;
356
+
357
+ private Float savgEmotionValue ;
358
+
359
+ public Integer getSrole () {
360
+ return this .srole ;
361
+ }
362
+
363
+ public void setSrole (Integer srole ) {
364
+ this .srole = srole ;
365
+ }
366
+
367
+ public Float getSmaxEmotionValue () {
368
+ return this .smaxEmotionValue ;
369
+ }
370
+
371
+ public void setSmaxEmotionValue (Float smaxEmotionValue ) {
372
+ this .smaxEmotionValue = smaxEmotionValue ;
373
+ }
374
+
375
+ public Float getSminEmotionValue () {
376
+ return this .sminEmotionValue ;
377
+ }
378
+
379
+ public void setSminEmotionValue (Float sminEmotionValue ) {
380
+ this .sminEmotionValue = sminEmotionValue ;
381
+ }
382
+
383
+ public Float getSavgEmotionValue () {
384
+ return this .savgEmotionValue ;
385
+ }
386
+
387
+ public void setSavgEmotionValue (Float savgEmotionValue ) {
388
+ this .savgEmotionValue = savgEmotionValue ;
389
+ }
390
+ }
391
+
392
+ public static class ClientEvStat {
393
+
394
+ private Integer crole ;
395
+
396
+ private Float cmaxEmotionValue ;
397
+
398
+ private Float cminEmotionValue ;
399
+
400
+ private Float cavgEmotionValue ;
401
+
402
+ public Integer getCrole () {
403
+ return this .crole ;
404
+ }
405
+
406
+ public void setCrole (Integer crole ) {
407
+ this .crole = crole ;
408
+ }
409
+
410
+ public Float getCmaxEmotionValue () {
411
+ return this .cmaxEmotionValue ;
412
+ }
413
+
414
+ public void setCmaxEmotionValue (Float cmaxEmotionValue ) {
415
+ this .cmaxEmotionValue = cmaxEmotionValue ;
416
+ }
417
+
418
+ public Float getCminEmotionValue () {
419
+ return this .cminEmotionValue ;
420
+ }
421
+
422
+ public void setCminEmotionValue (Float cminEmotionValue ) {
423
+ this .cminEmotionValue = cminEmotionValue ;
424
+ }
425
+
426
+ public Float getCavgEmotionValue () {
427
+ return this .cavgEmotionValue ;
428
+ }
429
+
430
+ public void setCavgEmotionValue (Float cavgEmotionValue ) {
431
+ this .cavgEmotionValue = cavgEmotionValue ;
432
+ }
433
+ }
434
+
435
+ public static class ServiceSrStat {
436
+
437
+ private Integer srole ;
438
+
439
+ private Float smaxSpeechRate ;
440
+
441
+ private Float sminSpeechRate ;
442
+
443
+ private Float savgSpeechRate ;
444
+
445
+ public Integer getSrole () {
446
+ return this .srole ;
447
+ }
448
+
449
+ public void setSrole (Integer srole ) {
450
+ this .srole = srole ;
451
+ }
452
+
453
+ public Float getSmaxSpeechRate () {
454
+ return this .smaxSpeechRate ;
455
+ }
456
+
457
+ public void setSmaxSpeechRate (Float smaxSpeechRate ) {
458
+ this .smaxSpeechRate = smaxSpeechRate ;
459
+ }
460
+
461
+ public Float getSminSpeechRate () {
462
+ return this .sminSpeechRate ;
463
+ }
464
+
465
+ public void setSminSpeechRate (Float sminSpeechRate ) {
466
+ this .sminSpeechRate = sminSpeechRate ;
467
+ }
468
+
469
+ public Float getSavgSpeechRate () {
470
+ return this .savgSpeechRate ;
471
+ }
472
+
473
+ public void setSavgSpeechRate (Float savgSpeechRate ) {
474
+ this .savgSpeechRate = savgSpeechRate ;
475
+ }
476
+ }
477
+
478
+ public static class ClientSrStat {
479
+
480
+ private Integer crole ;
481
+
482
+ private Float cmaxSpeechRate ;
483
+
484
+ private Float cminSpeechRate ;
485
+
486
+ private Float cavgSpeechRate ;
487
+
488
+ public Integer getCrole () {
489
+ return this .crole ;
490
+ }
491
+
492
+ public void setCrole (Integer crole ) {
493
+ this .crole = crole ;
494
+ }
495
+
496
+ public Float getCmaxSpeechRate () {
497
+ return this .cmaxSpeechRate ;
498
+ }
499
+
500
+ public void setCmaxSpeechRate (Float cmaxSpeechRate ) {
501
+ this .cmaxSpeechRate = cmaxSpeechRate ;
502
+ }
503
+
504
+ public Float getCminSpeechRate () {
505
+ return this .cminSpeechRate ;
506
+ }
507
+
508
+ public void setCminSpeechRate (Float cminSpeechRate ) {
509
+ this .cminSpeechRate = cminSpeechRate ;
510
+ }
511
+
512
+ public Float getCavgSpeechRate () {
513
+ return this .cavgSpeechRate ;
514
+ }
515
+
516
+ public void setCavgSpeechRate (Float cavgSpeechRate ) {
517
+ this .cavgSpeechRate = cavgSpeechRate ;
518
+ }
519
+ }
288
520
}
289
521
}
290
522
0 commit comments