@alicloud/dyvmsapi20170525 2.1.2 → 2.2.0
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +1254 -308
- package/dist/client.js +2345 -929
- package/dist/client.js.map +1 -1
- package/package.json +9 -9
- package/src/client.ts +2354 -725
package/dist/client.d.ts
CHANGED
|
@@ -4,51 +4,6 @@
|
|
|
4
4
|
import * as $Util from '@alicloud/tea-util';
|
|
5
5
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
6
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
7
|
-
export declare class AddRtcAccountRequest extends $tea.Model {
|
|
8
|
-
deviceId?: string;
|
|
9
|
-
ownerId?: number;
|
|
10
|
-
resourceOwnerAccount?: string;
|
|
11
|
-
resourceOwnerId?: number;
|
|
12
|
-
static names(): {
|
|
13
|
-
[key: string]: string;
|
|
14
|
-
};
|
|
15
|
-
static types(): {
|
|
16
|
-
[key: string]: any;
|
|
17
|
-
};
|
|
18
|
-
constructor(map?: {
|
|
19
|
-
[key: string]: any;
|
|
20
|
-
});
|
|
21
|
-
}
|
|
22
|
-
export declare class AddRtcAccountResponseBody extends $tea.Model {
|
|
23
|
-
code?: string;
|
|
24
|
-
message?: string;
|
|
25
|
-
module?: string;
|
|
26
|
-
requestId?: string;
|
|
27
|
-
static names(): {
|
|
28
|
-
[key: string]: string;
|
|
29
|
-
};
|
|
30
|
-
static types(): {
|
|
31
|
-
[key: string]: any;
|
|
32
|
-
};
|
|
33
|
-
constructor(map?: {
|
|
34
|
-
[key: string]: any;
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
export declare class AddRtcAccountResponse extends $tea.Model {
|
|
38
|
-
headers: {
|
|
39
|
-
[key: string]: string;
|
|
40
|
-
};
|
|
41
|
-
body: AddRtcAccountResponseBody;
|
|
42
|
-
static names(): {
|
|
43
|
-
[key: string]: string;
|
|
44
|
-
};
|
|
45
|
-
static types(): {
|
|
46
|
-
[key: string]: any;
|
|
47
|
-
};
|
|
48
|
-
constructor(map?: {
|
|
49
|
-
[key: string]: any;
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
7
|
export declare class AddVirtualNumberRelationRequest extends $tea.Model {
|
|
53
8
|
corpNameList?: string;
|
|
54
9
|
numberList?: string;
|
|
@@ -84,10 +39,11 @@ export declare class AddVirtualNumberRelationResponseBody extends $tea.Model {
|
|
|
84
39
|
});
|
|
85
40
|
}
|
|
86
41
|
export declare class AddVirtualNumberRelationResponse extends $tea.Model {
|
|
87
|
-
headers
|
|
42
|
+
headers?: {
|
|
88
43
|
[key: string]: string;
|
|
89
44
|
};
|
|
90
|
-
|
|
45
|
+
statusCode?: number;
|
|
46
|
+
body?: AddVirtualNumberRelationResponseBody;
|
|
91
47
|
static names(): {
|
|
92
48
|
[key: string]: string;
|
|
93
49
|
};
|
|
@@ -139,55 +95,11 @@ export declare class BatchRobotSmartCallResponseBody extends $tea.Model {
|
|
|
139
95
|
});
|
|
140
96
|
}
|
|
141
97
|
export declare class BatchRobotSmartCallResponse extends $tea.Model {
|
|
142
|
-
headers
|
|
143
|
-
[key: string]: string;
|
|
144
|
-
};
|
|
145
|
-
body: BatchRobotSmartCallResponseBody;
|
|
146
|
-
static names(): {
|
|
147
|
-
[key: string]: string;
|
|
148
|
-
};
|
|
149
|
-
static types(): {
|
|
150
|
-
[key: string]: any;
|
|
151
|
-
};
|
|
152
|
-
constructor(map?: {
|
|
153
|
-
[key: string]: any;
|
|
154
|
-
});
|
|
155
|
-
}
|
|
156
|
-
export declare class CancelCallRequest extends $tea.Model {
|
|
157
|
-
callId?: string;
|
|
158
|
-
ownerId?: number;
|
|
159
|
-
resourceOwnerAccount?: string;
|
|
160
|
-
resourceOwnerId?: number;
|
|
161
|
-
static names(): {
|
|
162
|
-
[key: string]: string;
|
|
163
|
-
};
|
|
164
|
-
static types(): {
|
|
165
|
-
[key: string]: any;
|
|
166
|
-
};
|
|
167
|
-
constructor(map?: {
|
|
168
|
-
[key: string]: any;
|
|
169
|
-
});
|
|
170
|
-
}
|
|
171
|
-
export declare class CancelCallResponseBody extends $tea.Model {
|
|
172
|
-
code?: string;
|
|
173
|
-
message?: string;
|
|
174
|
-
requestId?: string;
|
|
175
|
-
status?: boolean;
|
|
176
|
-
static names(): {
|
|
177
|
-
[key: string]: string;
|
|
178
|
-
};
|
|
179
|
-
static types(): {
|
|
180
|
-
[key: string]: any;
|
|
181
|
-
};
|
|
182
|
-
constructor(map?: {
|
|
183
|
-
[key: string]: any;
|
|
184
|
-
});
|
|
185
|
-
}
|
|
186
|
-
export declare class CancelCallResponse extends $tea.Model {
|
|
187
|
-
headers: {
|
|
98
|
+
headers?: {
|
|
188
99
|
[key: string]: string;
|
|
189
100
|
};
|
|
190
|
-
|
|
101
|
+
statusCode?: number;
|
|
102
|
+
body?: BatchRobotSmartCallResponseBody;
|
|
191
103
|
static names(): {
|
|
192
104
|
[key: string]: string;
|
|
193
105
|
};
|
|
@@ -229,10 +141,11 @@ export declare class CancelOrderRobotTaskResponseBody extends $tea.Model {
|
|
|
229
141
|
});
|
|
230
142
|
}
|
|
231
143
|
export declare class CancelOrderRobotTaskResponse extends $tea.Model {
|
|
232
|
-
headers
|
|
144
|
+
headers?: {
|
|
233
145
|
[key: string]: string;
|
|
234
146
|
};
|
|
235
|
-
|
|
147
|
+
statusCode?: number;
|
|
148
|
+
body?: CancelOrderRobotTaskResponseBody;
|
|
236
149
|
static names(): {
|
|
237
150
|
[key: string]: string;
|
|
238
151
|
};
|
|
@@ -274,10 +187,11 @@ export declare class CancelRobotTaskResponseBody extends $tea.Model {
|
|
|
274
187
|
});
|
|
275
188
|
}
|
|
276
189
|
export declare class CancelRobotTaskResponse extends $tea.Model {
|
|
277
|
-
headers
|
|
190
|
+
headers?: {
|
|
278
191
|
[key: string]: string;
|
|
279
192
|
};
|
|
280
|
-
|
|
193
|
+
statusCode?: number;
|
|
194
|
+
body?: CancelRobotTaskResponseBody;
|
|
281
195
|
static names(): {
|
|
282
196
|
[key: string]: string;
|
|
283
197
|
};
|
|
@@ -288,19 +202,14 @@ export declare class CancelRobotTaskResponse extends $tea.Model {
|
|
|
288
202
|
[key: string]: any;
|
|
289
203
|
});
|
|
290
204
|
}
|
|
291
|
-
export declare class
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
calledShowNumber?: string;
|
|
296
|
-
callerNumber?: string;
|
|
297
|
-
callerShowNumber?: string;
|
|
205
|
+
export declare class ChangeMediaTypeRequest extends $tea.Model {
|
|
206
|
+
callId?: string;
|
|
207
|
+
calledNum?: string;
|
|
208
|
+
mediaType?: string;
|
|
298
209
|
outId?: string;
|
|
299
210
|
ownerId?: number;
|
|
300
|
-
recordFlag?: boolean;
|
|
301
211
|
resourceOwnerAccount?: string;
|
|
302
212
|
resourceOwnerId?: number;
|
|
303
|
-
sessionTimeout?: number;
|
|
304
213
|
static names(): {
|
|
305
214
|
[key: string]: string;
|
|
306
215
|
};
|
|
@@ -311,11 +220,12 @@ export declare class ClickToDialRequest extends $tea.Model {
|
|
|
311
220
|
[key: string]: any;
|
|
312
221
|
});
|
|
313
222
|
}
|
|
314
|
-
export declare class
|
|
315
|
-
|
|
223
|
+
export declare class ChangeMediaTypeResponseBody extends $tea.Model {
|
|
224
|
+
accessDeniedDetail?: string;
|
|
316
225
|
code?: string;
|
|
317
226
|
message?: string;
|
|
318
|
-
|
|
227
|
+
model?: boolean;
|
|
228
|
+
success?: boolean;
|
|
319
229
|
static names(): {
|
|
320
230
|
[key: string]: string;
|
|
321
231
|
};
|
|
@@ -326,11 +236,12 @@ export declare class ClickToDialResponseBody extends $tea.Model {
|
|
|
326
236
|
[key: string]: any;
|
|
327
237
|
});
|
|
328
238
|
}
|
|
329
|
-
export declare class
|
|
330
|
-
headers
|
|
239
|
+
export declare class ChangeMediaTypeResponse extends $tea.Model {
|
|
240
|
+
headers?: {
|
|
331
241
|
[key: string]: string;
|
|
332
242
|
};
|
|
333
|
-
|
|
243
|
+
statusCode?: number;
|
|
244
|
+
body?: ChangeMediaTypeResponseBody;
|
|
334
245
|
static names(): {
|
|
335
246
|
[key: string]: string;
|
|
336
247
|
};
|
|
@@ -381,10 +292,11 @@ export declare class CreateCallTaskResponseBody extends $tea.Model {
|
|
|
381
292
|
});
|
|
382
293
|
}
|
|
383
294
|
export declare class CreateCallTaskResponse extends $tea.Model {
|
|
384
|
-
headers
|
|
295
|
+
headers?: {
|
|
385
296
|
[key: string]: string;
|
|
386
297
|
};
|
|
387
|
-
|
|
298
|
+
statusCode?: number;
|
|
299
|
+
body?: CreateCallTaskResponseBody;
|
|
388
300
|
static names(): {
|
|
389
301
|
[key: string]: string;
|
|
390
302
|
};
|
|
@@ -435,10 +347,11 @@ export declare class CreateRobotTaskResponseBody extends $tea.Model {
|
|
|
435
347
|
});
|
|
436
348
|
}
|
|
437
349
|
export declare class CreateRobotTaskResponse extends $tea.Model {
|
|
438
|
-
headers
|
|
350
|
+
headers?: {
|
|
439
351
|
[key: string]: string;
|
|
440
352
|
};
|
|
441
|
-
|
|
353
|
+
statusCode?: number;
|
|
354
|
+
body?: CreateRobotTaskResponseBody;
|
|
442
355
|
static names(): {
|
|
443
356
|
[key: string]: string;
|
|
444
357
|
};
|
|
@@ -449,11 +362,14 @@ export declare class CreateRobotTaskResponse extends $tea.Model {
|
|
|
449
362
|
[key: string]: any;
|
|
450
363
|
});
|
|
451
364
|
}
|
|
452
|
-
export declare class
|
|
365
|
+
export declare class DegradeVideoFileRequest extends $tea.Model {
|
|
366
|
+
callId?: string;
|
|
367
|
+
calledNumber?: string;
|
|
368
|
+
mediaType?: string;
|
|
369
|
+
outId?: string;
|
|
453
370
|
ownerId?: number;
|
|
454
371
|
resourceOwnerAccount?: string;
|
|
455
372
|
resourceOwnerId?: number;
|
|
456
|
-
taskId?: number;
|
|
457
373
|
static names(): {
|
|
458
374
|
[key: string]: string;
|
|
459
375
|
};
|
|
@@ -464,11 +380,14 @@ export declare class DeleteRobotTaskRequest extends $tea.Model {
|
|
|
464
380
|
[key: string]: any;
|
|
465
381
|
});
|
|
466
382
|
}
|
|
467
|
-
export declare class
|
|
383
|
+
export declare class DegradeVideoFileResponseBody extends $tea.Model {
|
|
384
|
+
accessDeniedDetail?: string;
|
|
468
385
|
code?: string;
|
|
469
|
-
data?:
|
|
386
|
+
data?: {
|
|
387
|
+
[key: string]: any;
|
|
388
|
+
};
|
|
470
389
|
message?: string;
|
|
471
|
-
|
|
390
|
+
success?: boolean;
|
|
472
391
|
static names(): {
|
|
473
392
|
[key: string]: string;
|
|
474
393
|
};
|
|
@@ -479,11 +398,12 @@ export declare class DeleteRobotTaskResponseBody extends $tea.Model {
|
|
|
479
398
|
[key: string]: any;
|
|
480
399
|
});
|
|
481
400
|
}
|
|
482
|
-
export declare class
|
|
483
|
-
headers
|
|
401
|
+
export declare class DegradeVideoFileResponse extends $tea.Model {
|
|
402
|
+
headers?: {
|
|
484
403
|
[key: string]: string;
|
|
485
404
|
};
|
|
486
|
-
|
|
405
|
+
statusCode?: number;
|
|
406
|
+
body?: DegradeVideoFileResponseBody;
|
|
487
407
|
static names(): {
|
|
488
408
|
[key: string]: string;
|
|
489
409
|
};
|
|
@@ -494,12 +414,10 @@ export declare class DeleteRobotTaskResponse extends $tea.Model {
|
|
|
494
414
|
[key: string]: any;
|
|
495
415
|
});
|
|
496
416
|
}
|
|
497
|
-
export declare class
|
|
498
|
-
fireTime?: string;
|
|
417
|
+
export declare class DeleteRobotTaskRequest extends $tea.Model {
|
|
499
418
|
ownerId?: number;
|
|
500
419
|
resourceOwnerAccount?: string;
|
|
501
420
|
resourceOwnerId?: number;
|
|
502
|
-
status?: string;
|
|
503
421
|
taskId?: number;
|
|
504
422
|
static names(): {
|
|
505
423
|
[key: string]: string;
|
|
@@ -511,9 +429,10 @@ export declare class ExecuteCallTaskRequest extends $tea.Model {
|
|
|
511
429
|
[key: string]: any;
|
|
512
430
|
});
|
|
513
431
|
}
|
|
514
|
-
export declare class
|
|
432
|
+
export declare class DeleteRobotTaskResponseBody extends $tea.Model {
|
|
515
433
|
code?: string;
|
|
516
|
-
data?:
|
|
434
|
+
data?: string;
|
|
435
|
+
message?: string;
|
|
517
436
|
requestId?: string;
|
|
518
437
|
static names(): {
|
|
519
438
|
[key: string]: string;
|
|
@@ -525,11 +444,12 @@ export declare class ExecuteCallTaskResponseBody extends $tea.Model {
|
|
|
525
444
|
[key: string]: any;
|
|
526
445
|
});
|
|
527
446
|
}
|
|
528
|
-
export declare class
|
|
529
|
-
headers
|
|
447
|
+
export declare class DeleteRobotTaskResponse extends $tea.Model {
|
|
448
|
+
headers?: {
|
|
530
449
|
[key: string]: string;
|
|
531
450
|
};
|
|
532
|
-
|
|
451
|
+
statusCode?: number;
|
|
452
|
+
body?: DeleteRobotTaskResponseBody;
|
|
533
453
|
static names(): {
|
|
534
454
|
[key: string]: string;
|
|
535
455
|
};
|
|
@@ -540,11 +460,13 @@ export declare class ExecuteCallTaskResponse extends $tea.Model {
|
|
|
540
460
|
[key: string]: any;
|
|
541
461
|
});
|
|
542
462
|
}
|
|
543
|
-
export declare class
|
|
463
|
+
export declare class ExecuteCallTaskRequest extends $tea.Model {
|
|
464
|
+
fireTime?: string;
|
|
544
465
|
ownerId?: number;
|
|
545
466
|
resourceOwnerAccount?: string;
|
|
546
467
|
resourceOwnerId?: number;
|
|
547
|
-
|
|
468
|
+
status?: string;
|
|
469
|
+
taskId?: number;
|
|
548
470
|
static names(): {
|
|
549
471
|
[key: string]: string;
|
|
550
472
|
};
|
|
@@ -555,10 +477,9 @@ export declare class GetCallInfoRequest extends $tea.Model {
|
|
|
555
477
|
[key: string]: any;
|
|
556
478
|
});
|
|
557
479
|
}
|
|
558
|
-
export declare class
|
|
480
|
+
export declare class ExecuteCallTaskResponseBody extends $tea.Model {
|
|
559
481
|
code?: string;
|
|
560
|
-
data?:
|
|
561
|
-
message?: string;
|
|
482
|
+
data?: boolean;
|
|
562
483
|
requestId?: string;
|
|
563
484
|
static names(): {
|
|
564
485
|
[key: string]: string;
|
|
@@ -570,11 +491,12 @@ export declare class GetCallInfoResponseBody extends $tea.Model {
|
|
|
570
491
|
[key: string]: any;
|
|
571
492
|
});
|
|
572
493
|
}
|
|
573
|
-
export declare class
|
|
574
|
-
headers
|
|
494
|
+
export declare class ExecuteCallTaskResponse extends $tea.Model {
|
|
495
|
+
headers?: {
|
|
575
496
|
[key: string]: string;
|
|
576
497
|
};
|
|
577
|
-
|
|
498
|
+
statusCode?: number;
|
|
499
|
+
body?: ExecuteCallTaskResponseBody;
|
|
578
500
|
static names(): {
|
|
579
501
|
[key: string]: string;
|
|
580
502
|
};
|
|
@@ -585,8 +507,9 @@ export declare class GetCallInfoResponse extends $tea.Model {
|
|
|
585
507
|
[key: string]: any;
|
|
586
508
|
});
|
|
587
509
|
}
|
|
588
|
-
export declare class
|
|
589
|
-
|
|
510
|
+
export declare class GetCallProgressRequest extends $tea.Model {
|
|
511
|
+
callId?: string;
|
|
512
|
+
calledNum?: string;
|
|
590
513
|
ownerId?: number;
|
|
591
514
|
resourceOwnerAccount?: string;
|
|
592
515
|
resourceOwnerId?: number;
|
|
@@ -600,11 +523,14 @@ export declare class GetHotlineQualificationByOrderRequest extends $tea.Model {
|
|
|
600
523
|
[key: string]: any;
|
|
601
524
|
});
|
|
602
525
|
}
|
|
603
|
-
export declare class
|
|
526
|
+
export declare class GetCallProgressResponseBody extends $tea.Model {
|
|
527
|
+
accessDeniedDetail?: string;
|
|
604
528
|
code?: string;
|
|
605
|
-
data?: GetHotlineQualificationByOrderResponseBodyData;
|
|
606
529
|
message?: string;
|
|
607
|
-
|
|
530
|
+
model?: {
|
|
531
|
+
[key: string]: any;
|
|
532
|
+
};
|
|
533
|
+
success?: boolean;
|
|
608
534
|
static names(): {
|
|
609
535
|
[key: string]: string;
|
|
610
536
|
};
|
|
@@ -615,11 +541,12 @@ export declare class GetHotlineQualificationByOrderResponseBody extends $tea.Mod
|
|
|
615
541
|
[key: string]: any;
|
|
616
542
|
});
|
|
617
543
|
}
|
|
618
|
-
export declare class
|
|
619
|
-
headers
|
|
544
|
+
export declare class GetCallProgressResponse extends $tea.Model {
|
|
545
|
+
headers?: {
|
|
620
546
|
[key: string]: string;
|
|
621
547
|
};
|
|
622
|
-
|
|
548
|
+
statusCode?: number;
|
|
549
|
+
body?: GetCallProgressResponseBody;
|
|
623
550
|
static names(): {
|
|
624
551
|
[key: string]: string;
|
|
625
552
|
};
|
|
@@ -630,7 +557,8 @@ export declare class GetHotlineQualificationByOrderResponse extends $tea.Model {
|
|
|
630
557
|
[key: string]: any;
|
|
631
558
|
});
|
|
632
559
|
}
|
|
633
|
-
export declare class
|
|
560
|
+
export declare class GetHotlineQualificationByOrderRequest extends $tea.Model {
|
|
561
|
+
orderId?: string;
|
|
634
562
|
ownerId?: number;
|
|
635
563
|
resourceOwnerAccount?: string;
|
|
636
564
|
resourceOwnerId?: number;
|
|
@@ -644,9 +572,9 @@ export declare class GetMqttTokenRequest extends $tea.Model {
|
|
|
644
572
|
[key: string]: any;
|
|
645
573
|
});
|
|
646
574
|
}
|
|
647
|
-
export declare class
|
|
575
|
+
export declare class GetHotlineQualificationByOrderResponseBody extends $tea.Model {
|
|
648
576
|
code?: string;
|
|
649
|
-
data?:
|
|
577
|
+
data?: GetHotlineQualificationByOrderResponseBodyData;
|
|
650
578
|
message?: string;
|
|
651
579
|
requestId?: string;
|
|
652
580
|
static names(): {
|
|
@@ -659,11 +587,12 @@ export declare class GetMqttTokenResponseBody extends $tea.Model {
|
|
|
659
587
|
[key: string]: any;
|
|
660
588
|
});
|
|
661
589
|
}
|
|
662
|
-
export declare class
|
|
663
|
-
headers
|
|
590
|
+
export declare class GetHotlineQualificationByOrderResponse extends $tea.Model {
|
|
591
|
+
headers?: {
|
|
664
592
|
[key: string]: string;
|
|
665
593
|
};
|
|
666
|
-
|
|
594
|
+
statusCode?: number;
|
|
595
|
+
body?: GetHotlineQualificationByOrderResponseBody;
|
|
667
596
|
static names(): {
|
|
668
597
|
[key: string]: string;
|
|
669
598
|
};
|
|
@@ -674,13 +603,11 @@ export declare class GetMqttTokenResponse extends $tea.Model {
|
|
|
674
603
|
[key: string]: any;
|
|
675
604
|
});
|
|
676
605
|
}
|
|
677
|
-
export declare class
|
|
678
|
-
deviceId?: string;
|
|
679
|
-
isCustomAccount?: boolean;
|
|
606
|
+
export declare class GetTokenRequest extends $tea.Model {
|
|
680
607
|
ownerId?: number;
|
|
681
608
|
resourceOwnerAccount?: string;
|
|
682
609
|
resourceOwnerId?: number;
|
|
683
|
-
|
|
610
|
+
tokenType?: string;
|
|
684
611
|
static names(): {
|
|
685
612
|
[key: string]: string;
|
|
686
613
|
};
|
|
@@ -691,11 +618,12 @@ export declare class GetRtcTokenRequest extends $tea.Model {
|
|
|
691
618
|
[key: string]: any;
|
|
692
619
|
});
|
|
693
620
|
}
|
|
694
|
-
export declare class
|
|
621
|
+
export declare class GetTokenResponseBody extends $tea.Model {
|
|
695
622
|
code?: string;
|
|
696
623
|
message?: string;
|
|
697
|
-
module?: string;
|
|
698
624
|
requestId?: string;
|
|
625
|
+
success?: boolean;
|
|
626
|
+
token?: string;
|
|
699
627
|
static names(): {
|
|
700
628
|
[key: string]: string;
|
|
701
629
|
};
|
|
@@ -706,11 +634,12 @@ export declare class GetRtcTokenResponseBody extends $tea.Model {
|
|
|
706
634
|
[key: string]: any;
|
|
707
635
|
});
|
|
708
636
|
}
|
|
709
|
-
export declare class
|
|
710
|
-
headers
|
|
637
|
+
export declare class GetTokenResponse extends $tea.Model {
|
|
638
|
+
headers?: {
|
|
711
639
|
[key: string]: string;
|
|
712
640
|
};
|
|
713
|
-
|
|
641
|
+
statusCode?: number;
|
|
642
|
+
body?: GetTokenResponseBody;
|
|
714
643
|
static names(): {
|
|
715
644
|
[key: string]: string;
|
|
716
645
|
};
|
|
@@ -721,11 +650,11 @@ export declare class GetRtcTokenResponse extends $tea.Model {
|
|
|
721
650
|
[key: string]: any;
|
|
722
651
|
});
|
|
723
652
|
}
|
|
724
|
-
export declare class
|
|
653
|
+
export declare class GetVideoFieldUrlRequest extends $tea.Model {
|
|
725
654
|
ownerId?: number;
|
|
726
655
|
resourceOwnerAccount?: string;
|
|
727
656
|
resourceOwnerId?: number;
|
|
728
|
-
|
|
657
|
+
videoFile?: string;
|
|
729
658
|
static names(): {
|
|
730
659
|
[key: string]: string;
|
|
731
660
|
};
|
|
@@ -736,12 +665,14 @@ export declare class GetTokenRequest extends $tea.Model {
|
|
|
736
665
|
[key: string]: any;
|
|
737
666
|
});
|
|
738
667
|
}
|
|
739
|
-
export declare class
|
|
668
|
+
export declare class GetVideoFieldUrlResponseBody extends $tea.Model {
|
|
669
|
+
accessDeniedDetail?: string;
|
|
740
670
|
code?: string;
|
|
741
671
|
message?: string;
|
|
742
|
-
|
|
672
|
+
model?: {
|
|
673
|
+
[key: string]: any;
|
|
674
|
+
};
|
|
743
675
|
success?: boolean;
|
|
744
|
-
token?: string;
|
|
745
676
|
static names(): {
|
|
746
677
|
[key: string]: string;
|
|
747
678
|
};
|
|
@@ -752,11 +683,12 @@ export declare class GetTokenResponseBody extends $tea.Model {
|
|
|
752
683
|
[key: string]: any;
|
|
753
684
|
});
|
|
754
685
|
}
|
|
755
|
-
export declare class
|
|
756
|
-
headers
|
|
686
|
+
export declare class GetVideoFieldUrlResponse extends $tea.Model {
|
|
687
|
+
headers?: {
|
|
757
688
|
[key: string]: string;
|
|
758
689
|
};
|
|
759
|
-
|
|
690
|
+
statusCode?: number;
|
|
691
|
+
body?: GetVideoFieldUrlResponseBody;
|
|
760
692
|
static names(): {
|
|
761
693
|
[key: string]: string;
|
|
762
694
|
};
|
|
@@ -807,10 +739,11 @@ export declare class IvrCallResponseBody extends $tea.Model {
|
|
|
807
739
|
});
|
|
808
740
|
}
|
|
809
741
|
export declare class IvrCallResponse extends $tea.Model {
|
|
810
|
-
headers
|
|
742
|
+
headers?: {
|
|
811
743
|
[key: string]: string;
|
|
812
744
|
};
|
|
813
|
-
|
|
745
|
+
statusCode?: number;
|
|
746
|
+
body?: IvrCallResponseBody;
|
|
814
747
|
static names(): {
|
|
815
748
|
[key: string]: string;
|
|
816
749
|
};
|
|
@@ -860,10 +793,11 @@ export declare class ListCallTaskResponseBody extends $tea.Model {
|
|
|
860
793
|
});
|
|
861
794
|
}
|
|
862
795
|
export declare class ListCallTaskResponse extends $tea.Model {
|
|
863
|
-
headers
|
|
796
|
+
headers?: {
|
|
864
797
|
[key: string]: string;
|
|
865
798
|
};
|
|
866
|
-
|
|
799
|
+
statusCode?: number;
|
|
800
|
+
body?: ListCallTaskResponseBody;
|
|
867
801
|
static names(): {
|
|
868
802
|
[key: string]: string;
|
|
869
803
|
};
|
|
@@ -912,10 +846,11 @@ export declare class ListCallTaskDetailResponseBody extends $tea.Model {
|
|
|
912
846
|
});
|
|
913
847
|
}
|
|
914
848
|
export declare class ListCallTaskDetailResponse extends $tea.Model {
|
|
915
|
-
headers
|
|
849
|
+
headers?: {
|
|
916
850
|
[key: string]: string;
|
|
917
851
|
};
|
|
918
|
-
|
|
852
|
+
statusCode?: number;
|
|
853
|
+
body?: ListCallTaskDetailResponseBody;
|
|
919
854
|
static names(): {
|
|
920
855
|
[key: string]: string;
|
|
921
856
|
};
|
|
@@ -960,10 +895,11 @@ export declare class ListHotlineTransferNumberResponseBody extends $tea.Model {
|
|
|
960
895
|
});
|
|
961
896
|
}
|
|
962
897
|
export declare class ListHotlineTransferNumberResponse extends $tea.Model {
|
|
963
|
-
headers
|
|
898
|
+
headers?: {
|
|
964
899
|
[key: string]: string;
|
|
965
900
|
};
|
|
966
|
-
|
|
901
|
+
statusCode?: number;
|
|
902
|
+
body?: ListHotlineTransferNumberResponseBody;
|
|
967
903
|
static names(): {
|
|
968
904
|
[key: string]: string;
|
|
969
905
|
};
|
|
@@ -1008,10 +944,111 @@ export declare class ListHotlineTransferRegisterFileResponseBody extends $tea.Mo
|
|
|
1008
944
|
});
|
|
1009
945
|
}
|
|
1010
946
|
export declare class ListHotlineTransferRegisterFileResponse extends $tea.Model {
|
|
1011
|
-
headers
|
|
947
|
+
headers?: {
|
|
948
|
+
[key: string]: string;
|
|
949
|
+
};
|
|
950
|
+
statusCode?: number;
|
|
951
|
+
body?: ListHotlineTransferRegisterFileResponseBody;
|
|
952
|
+
static names(): {
|
|
953
|
+
[key: string]: string;
|
|
954
|
+
};
|
|
955
|
+
static types(): {
|
|
956
|
+
[key: string]: any;
|
|
957
|
+
};
|
|
958
|
+
constructor(map?: {
|
|
959
|
+
[key: string]: any;
|
|
960
|
+
});
|
|
961
|
+
}
|
|
962
|
+
export declare class PauseVideoFileRequest extends $tea.Model {
|
|
963
|
+
callId?: string;
|
|
964
|
+
calledNumber?: string;
|
|
965
|
+
ownerId?: number;
|
|
966
|
+
resourceOwnerAccount?: string;
|
|
967
|
+
resourceOwnerId?: number;
|
|
968
|
+
static names(): {
|
|
969
|
+
[key: string]: string;
|
|
970
|
+
};
|
|
971
|
+
static types(): {
|
|
972
|
+
[key: string]: any;
|
|
973
|
+
};
|
|
974
|
+
constructor(map?: {
|
|
975
|
+
[key: string]: any;
|
|
976
|
+
});
|
|
977
|
+
}
|
|
978
|
+
export declare class PauseVideoFileResponseBody extends $tea.Model {
|
|
979
|
+
accessDeniedDetail?: string;
|
|
980
|
+
code?: string;
|
|
981
|
+
data?: {
|
|
982
|
+
[key: string]: any;
|
|
983
|
+
};
|
|
984
|
+
message?: string;
|
|
985
|
+
success?: boolean;
|
|
986
|
+
static names(): {
|
|
987
|
+
[key: string]: string;
|
|
988
|
+
};
|
|
989
|
+
static types(): {
|
|
990
|
+
[key: string]: any;
|
|
991
|
+
};
|
|
992
|
+
constructor(map?: {
|
|
993
|
+
[key: string]: any;
|
|
994
|
+
});
|
|
995
|
+
}
|
|
996
|
+
export declare class PauseVideoFileResponse extends $tea.Model {
|
|
997
|
+
headers?: {
|
|
998
|
+
[key: string]: string;
|
|
999
|
+
};
|
|
1000
|
+
statusCode?: number;
|
|
1001
|
+
body?: PauseVideoFileResponseBody;
|
|
1002
|
+
static names(): {
|
|
1003
|
+
[key: string]: string;
|
|
1004
|
+
};
|
|
1005
|
+
static types(): {
|
|
1006
|
+
[key: string]: any;
|
|
1007
|
+
};
|
|
1008
|
+
constructor(map?: {
|
|
1009
|
+
[key: string]: any;
|
|
1010
|
+
});
|
|
1011
|
+
}
|
|
1012
|
+
export declare class PlayVideoFileRequest extends $tea.Model {
|
|
1013
|
+
callId?: string;
|
|
1014
|
+
calledNumber?: string;
|
|
1015
|
+
outId?: string;
|
|
1016
|
+
ownerId?: number;
|
|
1017
|
+
resourceOwnerAccount?: string;
|
|
1018
|
+
resourceOwnerId?: number;
|
|
1019
|
+
videoId?: string;
|
|
1020
|
+
static names(): {
|
|
1021
|
+
[key: string]: string;
|
|
1022
|
+
};
|
|
1023
|
+
static types(): {
|
|
1024
|
+
[key: string]: any;
|
|
1025
|
+
};
|
|
1026
|
+
constructor(map?: {
|
|
1027
|
+
[key: string]: any;
|
|
1028
|
+
});
|
|
1029
|
+
}
|
|
1030
|
+
export declare class PlayVideoFileResponseBody extends $tea.Model {
|
|
1031
|
+
accessDeniedDetail?: string;
|
|
1032
|
+
code?: string;
|
|
1033
|
+
message?: string;
|
|
1034
|
+
model?: boolean;
|
|
1035
|
+
success?: boolean;
|
|
1036
|
+
static names(): {
|
|
1037
|
+
[key: string]: string;
|
|
1038
|
+
};
|
|
1039
|
+
static types(): {
|
|
1040
|
+
[key: string]: any;
|
|
1041
|
+
};
|
|
1042
|
+
constructor(map?: {
|
|
1043
|
+
[key: string]: any;
|
|
1044
|
+
});
|
|
1045
|
+
}
|
|
1046
|
+
export declare class PlayVideoFileResponse extends $tea.Model {
|
|
1047
|
+
headers?: {
|
|
1012
1048
|
[key: string]: string;
|
|
1013
1049
|
};
|
|
1014
|
-
|
|
1050
|
+
statusCode?: number;
|
|
1051
|
+
body?: PlayVideoFileResponseBody;
|
|
1015
1052
|
static names(): {
|
|
1016
1053
|
[key: string]: string;
|
|
1017
1054
|
};
|
|
@@ -1055,10 +1092,11 @@ export declare class QueryCallDetailByCallIdResponseBody extends $tea.Model {
|
|
|
1055
1092
|
});
|
|
1056
1093
|
}
|
|
1057
1094
|
export declare class QueryCallDetailByCallIdResponse extends $tea.Model {
|
|
1058
|
-
headers
|
|
1095
|
+
headers?: {
|
|
1059
1096
|
[key: string]: string;
|
|
1060
1097
|
};
|
|
1061
|
-
|
|
1098
|
+
statusCode?: number;
|
|
1099
|
+
body?: QueryCallDetailByCallIdResponseBody;
|
|
1062
1100
|
static names(): {
|
|
1063
1101
|
[key: string]: string;
|
|
1064
1102
|
};
|
|
@@ -1102,10 +1140,11 @@ export declare class QueryCallDetailByTaskIdResponseBody extends $tea.Model {
|
|
|
1102
1140
|
});
|
|
1103
1141
|
}
|
|
1104
1142
|
export declare class QueryCallDetailByTaskIdResponse extends $tea.Model {
|
|
1105
|
-
headers
|
|
1143
|
+
headers?: {
|
|
1106
1144
|
[key: string]: string;
|
|
1107
1145
|
};
|
|
1108
|
-
|
|
1146
|
+
statusCode?: number;
|
|
1147
|
+
body?: QueryCallDetailByTaskIdResponseBody;
|
|
1109
1148
|
static names(): {
|
|
1110
1149
|
[key: string]: string;
|
|
1111
1150
|
};
|
|
@@ -1147,10 +1186,11 @@ export declare class QueryCallInPoolTransferConfigResponseBody extends $tea.Mode
|
|
|
1147
1186
|
});
|
|
1148
1187
|
}
|
|
1149
1188
|
export declare class QueryCallInPoolTransferConfigResponse extends $tea.Model {
|
|
1150
|
-
headers
|
|
1189
|
+
headers?: {
|
|
1151
1190
|
[key: string]: string;
|
|
1152
1191
|
};
|
|
1153
|
-
|
|
1192
|
+
statusCode?: number;
|
|
1193
|
+
body?: QueryCallInPoolTransferConfigResponseBody;
|
|
1154
1194
|
static names(): {
|
|
1155
1195
|
[key: string]: string;
|
|
1156
1196
|
};
|
|
@@ -1196,10 +1236,11 @@ export declare class QueryCallInTransferRecordResponseBody extends $tea.Model {
|
|
|
1196
1236
|
});
|
|
1197
1237
|
}
|
|
1198
1238
|
export declare class QueryCallInTransferRecordResponse extends $tea.Model {
|
|
1199
|
-
headers
|
|
1239
|
+
headers?: {
|
|
1200
1240
|
[key: string]: string;
|
|
1201
1241
|
};
|
|
1202
|
-
|
|
1242
|
+
statusCode?: number;
|
|
1243
|
+
body?: QueryCallInTransferRecordResponseBody;
|
|
1203
1244
|
static names(): {
|
|
1204
1245
|
[key: string]: string;
|
|
1205
1246
|
};
|
|
@@ -1241,10 +1282,11 @@ export declare class QueryRobotInfoListResponseBody extends $tea.Model {
|
|
|
1241
1282
|
});
|
|
1242
1283
|
}
|
|
1243
1284
|
export declare class QueryRobotInfoListResponse extends $tea.Model {
|
|
1244
|
-
headers
|
|
1285
|
+
headers?: {
|
|
1245
1286
|
[key: string]: string;
|
|
1246
1287
|
};
|
|
1247
|
-
|
|
1288
|
+
statusCode?: number;
|
|
1289
|
+
body?: QueryRobotInfoListResponseBody;
|
|
1248
1290
|
static names(): {
|
|
1249
1291
|
[key: string]: string;
|
|
1250
1292
|
};
|
|
@@ -1288,10 +1330,11 @@ export declare class QueryRobotTaskCallDetailResponseBody extends $tea.Model {
|
|
|
1288
1330
|
});
|
|
1289
1331
|
}
|
|
1290
1332
|
export declare class QueryRobotTaskCallDetailResponse extends $tea.Model {
|
|
1291
|
-
headers
|
|
1333
|
+
headers?: {
|
|
1292
1334
|
[key: string]: string;
|
|
1293
1335
|
};
|
|
1294
|
-
|
|
1336
|
+
statusCode?: number;
|
|
1337
|
+
body?: QueryRobotTaskCallDetailResponseBody;
|
|
1295
1338
|
static names(): {
|
|
1296
1339
|
[key: string]: string;
|
|
1297
1340
|
};
|
|
@@ -1342,10 +1385,11 @@ export declare class QueryRobotTaskCallListResponseBody extends $tea.Model {
|
|
|
1342
1385
|
});
|
|
1343
1386
|
}
|
|
1344
1387
|
export declare class QueryRobotTaskCallListResponse extends $tea.Model {
|
|
1345
|
-
headers
|
|
1388
|
+
headers?: {
|
|
1346
1389
|
[key: string]: string;
|
|
1347
1390
|
};
|
|
1348
|
-
|
|
1391
|
+
statusCode?: number;
|
|
1392
|
+
body?: QueryRobotTaskCallListResponseBody;
|
|
1349
1393
|
static names(): {
|
|
1350
1394
|
[key: string]: string;
|
|
1351
1395
|
};
|
|
@@ -1387,10 +1431,11 @@ export declare class QueryRobotTaskDetailResponseBody extends $tea.Model {
|
|
|
1387
1431
|
});
|
|
1388
1432
|
}
|
|
1389
1433
|
export declare class QueryRobotTaskDetailResponse extends $tea.Model {
|
|
1390
|
-
headers
|
|
1434
|
+
headers?: {
|
|
1391
1435
|
[key: string]: string;
|
|
1392
1436
|
};
|
|
1393
|
-
|
|
1437
|
+
statusCode?: number;
|
|
1438
|
+
body?: QueryRobotTaskDetailResponseBody;
|
|
1394
1439
|
static names(): {
|
|
1395
1440
|
[key: string]: string;
|
|
1396
1441
|
};
|
|
@@ -1439,10 +1484,11 @@ export declare class QueryRobotTaskListResponseBody extends $tea.Model {
|
|
|
1439
1484
|
});
|
|
1440
1485
|
}
|
|
1441
1486
|
export declare class QueryRobotTaskListResponse extends $tea.Model {
|
|
1442
|
-
headers
|
|
1487
|
+
headers?: {
|
|
1443
1488
|
[key: string]: string;
|
|
1444
1489
|
};
|
|
1445
|
-
|
|
1490
|
+
statusCode?: number;
|
|
1491
|
+
body?: QueryRobotTaskListResponseBody;
|
|
1446
1492
|
static names(): {
|
|
1447
1493
|
[key: string]: string;
|
|
1448
1494
|
};
|
|
@@ -1483,10 +1529,11 @@ export declare class QueryRobotv2AllListResponseBody extends $tea.Model {
|
|
|
1483
1529
|
});
|
|
1484
1530
|
}
|
|
1485
1531
|
export declare class QueryRobotv2AllListResponse extends $tea.Model {
|
|
1486
|
-
headers
|
|
1532
|
+
headers?: {
|
|
1487
1533
|
[key: string]: string;
|
|
1488
1534
|
};
|
|
1489
|
-
|
|
1535
|
+
statusCode?: number;
|
|
1536
|
+
body?: QueryRobotv2AllListResponseBody;
|
|
1490
1537
|
static names(): {
|
|
1491
1538
|
[key: string]: string;
|
|
1492
1539
|
};
|
|
@@ -1497,14 +1544,12 @@ export declare class QueryRobotv2AllListResponse extends $tea.Model {
|
|
|
1497
1544
|
[key: string]: any;
|
|
1498
1545
|
});
|
|
1499
1546
|
}
|
|
1500
|
-
export declare class
|
|
1547
|
+
export declare class QueryVideoPlayProgressRequest extends $tea.Model {
|
|
1548
|
+
callId?: string;
|
|
1549
|
+
calledNumber?: string;
|
|
1501
1550
|
ownerId?: number;
|
|
1502
|
-
pageNo?: number;
|
|
1503
|
-
pageSize?: number;
|
|
1504
|
-
prodCode?: string;
|
|
1505
1551
|
resourceOwnerAccount?: string;
|
|
1506
1552
|
resourceOwnerId?: number;
|
|
1507
|
-
routeType?: number;
|
|
1508
1553
|
static names(): {
|
|
1509
1554
|
[key: string]: string;
|
|
1510
1555
|
};
|
|
@@ -1515,10 +1560,14 @@ export declare class QueryVirtualNumberRequest extends $tea.Model {
|
|
|
1515
1560
|
[key: string]: any;
|
|
1516
1561
|
});
|
|
1517
1562
|
}
|
|
1518
|
-
export declare class
|
|
1563
|
+
export declare class QueryVideoPlayProgressResponseBody extends $tea.Model {
|
|
1564
|
+
accessDeniedDetail?: string;
|
|
1519
1565
|
code?: string;
|
|
1520
|
-
data?:
|
|
1521
|
-
|
|
1566
|
+
data?: {
|
|
1567
|
+
[key: string]: any;
|
|
1568
|
+
};
|
|
1569
|
+
message?: string;
|
|
1570
|
+
success?: boolean;
|
|
1522
1571
|
static names(): {
|
|
1523
1572
|
[key: string]: string;
|
|
1524
1573
|
};
|
|
@@ -1529,11 +1578,12 @@ export declare class QueryVirtualNumberResponseBody extends $tea.Model {
|
|
|
1529
1578
|
[key: string]: any;
|
|
1530
1579
|
});
|
|
1531
1580
|
}
|
|
1532
|
-
export declare class
|
|
1533
|
-
headers
|
|
1581
|
+
export declare class QueryVideoPlayProgressResponse extends $tea.Model {
|
|
1582
|
+
headers?: {
|
|
1534
1583
|
[key: string]: string;
|
|
1535
1584
|
};
|
|
1536
|
-
|
|
1585
|
+
statusCode?: number;
|
|
1586
|
+
body?: QueryVideoPlayProgressResponseBody;
|
|
1537
1587
|
static names(): {
|
|
1538
1588
|
[key: string]: string;
|
|
1539
1589
|
};
|
|
@@ -1544,19 +1594,14 @@ export declare class QueryVirtualNumberResponse extends $tea.Model {
|
|
|
1544
1594
|
[key: string]: any;
|
|
1545
1595
|
});
|
|
1546
1596
|
}
|
|
1547
|
-
export declare class
|
|
1597
|
+
export declare class QueryVirtualNumberRequest extends $tea.Model {
|
|
1548
1598
|
ownerId?: number;
|
|
1549
1599
|
pageNo?: number;
|
|
1550
1600
|
pageSize?: number;
|
|
1551
|
-
phoneNum?: string;
|
|
1552
1601
|
prodCode?: string;
|
|
1553
|
-
qualificationId?: number;
|
|
1554
|
-
regionNameCity?: string;
|
|
1555
|
-
relatedNum?: string;
|
|
1556
1602
|
resourceOwnerAccount?: string;
|
|
1557
1603
|
resourceOwnerId?: number;
|
|
1558
1604
|
routeType?: number;
|
|
1559
|
-
specId?: number;
|
|
1560
1605
|
static names(): {
|
|
1561
1606
|
[key: string]: string;
|
|
1562
1607
|
};
|
|
@@ -1567,7 +1612,60 @@ export declare class QueryVirtualNumberRelationRequest extends $tea.Model {
|
|
|
1567
1612
|
[key: string]: any;
|
|
1568
1613
|
});
|
|
1569
1614
|
}
|
|
1570
|
-
export declare class
|
|
1615
|
+
export declare class QueryVirtualNumberResponseBody extends $tea.Model {
|
|
1616
|
+
code?: string;
|
|
1617
|
+
data?: string;
|
|
1618
|
+
requestId?: string;
|
|
1619
|
+
static names(): {
|
|
1620
|
+
[key: string]: string;
|
|
1621
|
+
};
|
|
1622
|
+
static types(): {
|
|
1623
|
+
[key: string]: any;
|
|
1624
|
+
};
|
|
1625
|
+
constructor(map?: {
|
|
1626
|
+
[key: string]: any;
|
|
1627
|
+
});
|
|
1628
|
+
}
|
|
1629
|
+
export declare class QueryVirtualNumberResponse extends $tea.Model {
|
|
1630
|
+
headers?: {
|
|
1631
|
+
[key: string]: string;
|
|
1632
|
+
};
|
|
1633
|
+
statusCode?: number;
|
|
1634
|
+
body?: QueryVirtualNumberResponseBody;
|
|
1635
|
+
static names(): {
|
|
1636
|
+
[key: string]: string;
|
|
1637
|
+
};
|
|
1638
|
+
static types(): {
|
|
1639
|
+
[key: string]: any;
|
|
1640
|
+
};
|
|
1641
|
+
constructor(map?: {
|
|
1642
|
+
[key: string]: any;
|
|
1643
|
+
});
|
|
1644
|
+
}
|
|
1645
|
+
export declare class QueryVirtualNumberRelationRequest extends $tea.Model {
|
|
1646
|
+
ownerId?: number;
|
|
1647
|
+
pageNo?: number;
|
|
1648
|
+
pageSize?: number;
|
|
1649
|
+
phoneNum?: string;
|
|
1650
|
+
prodCode?: string;
|
|
1651
|
+
qualificationId?: number;
|
|
1652
|
+
regionNameCity?: string;
|
|
1653
|
+
relatedNum?: string;
|
|
1654
|
+
resourceOwnerAccount?: string;
|
|
1655
|
+
resourceOwnerId?: number;
|
|
1656
|
+
routeType?: number;
|
|
1657
|
+
specId?: number;
|
|
1658
|
+
static names(): {
|
|
1659
|
+
[key: string]: string;
|
|
1660
|
+
};
|
|
1661
|
+
static types(): {
|
|
1662
|
+
[key: string]: any;
|
|
1663
|
+
};
|
|
1664
|
+
constructor(map?: {
|
|
1665
|
+
[key: string]: any;
|
|
1666
|
+
});
|
|
1667
|
+
}
|
|
1668
|
+
export declare class QueryVirtualNumberRelationResponseBody extends $tea.Model {
|
|
1571
1669
|
code?: string;
|
|
1572
1670
|
data?: string;
|
|
1573
1671
|
requestId?: string;
|
|
@@ -1582,10 +1680,11 @@ export declare class QueryVirtualNumberRelationResponseBody extends $tea.Model {
|
|
|
1582
1680
|
});
|
|
1583
1681
|
}
|
|
1584
1682
|
export declare class QueryVirtualNumberRelationResponse extends $tea.Model {
|
|
1585
|
-
headers
|
|
1683
|
+
headers?: {
|
|
1586
1684
|
[key: string]: string;
|
|
1587
1685
|
};
|
|
1588
|
-
|
|
1686
|
+
statusCode?: number;
|
|
1687
|
+
body?: QueryVirtualNumberRelationResponseBody;
|
|
1589
1688
|
static names(): {
|
|
1590
1689
|
[key: string]: string;
|
|
1591
1690
|
};
|
|
@@ -1628,10 +1727,11 @@ export declare class QueryVoiceFileAuditInfoResponseBody extends $tea.Model {
|
|
|
1628
1727
|
});
|
|
1629
1728
|
}
|
|
1630
1729
|
export declare class QueryVoiceFileAuditInfoResponse extends $tea.Model {
|
|
1631
|
-
headers
|
|
1730
|
+
headers?: {
|
|
1632
1731
|
[key: string]: string;
|
|
1633
1732
|
};
|
|
1634
|
-
|
|
1733
|
+
statusCode?: number;
|
|
1734
|
+
body?: QueryVoiceFileAuditInfoResponseBody;
|
|
1635
1735
|
static names(): {
|
|
1636
1736
|
[key: string]: string;
|
|
1637
1737
|
};
|
|
@@ -1642,8 +1742,8 @@ export declare class QueryVoiceFileAuditInfoResponse extends $tea.Model {
|
|
|
1642
1742
|
[key: string]: any;
|
|
1643
1743
|
});
|
|
1644
1744
|
}
|
|
1645
|
-
export declare class
|
|
1646
|
-
|
|
1745
|
+
export declare class RecoverCallInConfigRequest extends $tea.Model {
|
|
1746
|
+
number?: string;
|
|
1647
1747
|
ownerId?: number;
|
|
1648
1748
|
resourceOwnerAccount?: string;
|
|
1649
1749
|
resourceOwnerId?: number;
|
|
@@ -1657,9 +1757,9 @@ export declare class RefreshMqttTokenRequest extends $tea.Model {
|
|
|
1657
1757
|
[key: string]: any;
|
|
1658
1758
|
});
|
|
1659
1759
|
}
|
|
1660
|
-
export declare class
|
|
1760
|
+
export declare class RecoverCallInConfigResponseBody extends $tea.Model {
|
|
1661
1761
|
code?: string;
|
|
1662
|
-
data?:
|
|
1762
|
+
data?: boolean;
|
|
1663
1763
|
message?: string;
|
|
1664
1764
|
requestId?: string;
|
|
1665
1765
|
static names(): {
|
|
@@ -1672,11 +1772,113 @@ export declare class RefreshMqttTokenResponseBody extends $tea.Model {
|
|
|
1672
1772
|
[key: string]: any;
|
|
1673
1773
|
});
|
|
1674
1774
|
}
|
|
1675
|
-
export declare class
|
|
1676
|
-
headers
|
|
1775
|
+
export declare class RecoverCallInConfigResponse extends $tea.Model {
|
|
1776
|
+
headers?: {
|
|
1777
|
+
[key: string]: string;
|
|
1778
|
+
};
|
|
1779
|
+
statusCode?: number;
|
|
1780
|
+
body?: RecoverCallInConfigResponseBody;
|
|
1781
|
+
static names(): {
|
|
1782
|
+
[key: string]: string;
|
|
1783
|
+
};
|
|
1784
|
+
static types(): {
|
|
1785
|
+
[key: string]: any;
|
|
1786
|
+
};
|
|
1787
|
+
constructor(map?: {
|
|
1788
|
+
[key: string]: any;
|
|
1789
|
+
});
|
|
1790
|
+
}
|
|
1791
|
+
export declare class ResumeVideoFileRequest extends $tea.Model {
|
|
1792
|
+
callId?: string;
|
|
1793
|
+
calledNumber?: string;
|
|
1794
|
+
ownerId?: number;
|
|
1795
|
+
resourceOwnerAccount?: string;
|
|
1796
|
+
resourceOwnerId?: number;
|
|
1797
|
+
static names(): {
|
|
1677
1798
|
[key: string]: string;
|
|
1678
1799
|
};
|
|
1679
|
-
|
|
1800
|
+
static types(): {
|
|
1801
|
+
[key: string]: any;
|
|
1802
|
+
};
|
|
1803
|
+
constructor(map?: {
|
|
1804
|
+
[key: string]: any;
|
|
1805
|
+
});
|
|
1806
|
+
}
|
|
1807
|
+
export declare class ResumeVideoFileResponseBody extends $tea.Model {
|
|
1808
|
+
accessDeniedDetail?: string;
|
|
1809
|
+
code?: string;
|
|
1810
|
+
data?: {
|
|
1811
|
+
[key: string]: any;
|
|
1812
|
+
};
|
|
1813
|
+
message?: string;
|
|
1814
|
+
success?: boolean;
|
|
1815
|
+
static names(): {
|
|
1816
|
+
[key: string]: string;
|
|
1817
|
+
};
|
|
1818
|
+
static types(): {
|
|
1819
|
+
[key: string]: any;
|
|
1820
|
+
};
|
|
1821
|
+
constructor(map?: {
|
|
1822
|
+
[key: string]: any;
|
|
1823
|
+
});
|
|
1824
|
+
}
|
|
1825
|
+
export declare class ResumeVideoFileResponse extends $tea.Model {
|
|
1826
|
+
headers?: {
|
|
1827
|
+
[key: string]: string;
|
|
1828
|
+
};
|
|
1829
|
+
statusCode?: number;
|
|
1830
|
+
body?: ResumeVideoFileResponseBody;
|
|
1831
|
+
static names(): {
|
|
1832
|
+
[key: string]: string;
|
|
1833
|
+
};
|
|
1834
|
+
static types(): {
|
|
1835
|
+
[key: string]: any;
|
|
1836
|
+
};
|
|
1837
|
+
constructor(map?: {
|
|
1838
|
+
[key: string]: any;
|
|
1839
|
+
});
|
|
1840
|
+
}
|
|
1841
|
+
export declare class SeekVideoFileRequest extends $tea.Model {
|
|
1842
|
+
callId?: string;
|
|
1843
|
+
calledNumber?: string;
|
|
1844
|
+
ownerId?: number;
|
|
1845
|
+
resourceOwnerAccount?: string;
|
|
1846
|
+
resourceOwnerId?: number;
|
|
1847
|
+
seekTimes?: number;
|
|
1848
|
+
static names(): {
|
|
1849
|
+
[key: string]: string;
|
|
1850
|
+
};
|
|
1851
|
+
static types(): {
|
|
1852
|
+
[key: string]: any;
|
|
1853
|
+
};
|
|
1854
|
+
constructor(map?: {
|
|
1855
|
+
[key: string]: any;
|
|
1856
|
+
});
|
|
1857
|
+
}
|
|
1858
|
+
export declare class SeekVideoFileResponseBody extends $tea.Model {
|
|
1859
|
+
accessDeniedDetail?: string;
|
|
1860
|
+
code?: string;
|
|
1861
|
+
data?: {
|
|
1862
|
+
[key: string]: any;
|
|
1863
|
+
};
|
|
1864
|
+
message?: string;
|
|
1865
|
+
success?: boolean;
|
|
1866
|
+
static names(): {
|
|
1867
|
+
[key: string]: string;
|
|
1868
|
+
};
|
|
1869
|
+
static types(): {
|
|
1870
|
+
[key: string]: any;
|
|
1871
|
+
};
|
|
1872
|
+
constructor(map?: {
|
|
1873
|
+
[key: string]: any;
|
|
1874
|
+
});
|
|
1875
|
+
}
|
|
1876
|
+
export declare class SeekVideoFileResponse extends $tea.Model {
|
|
1877
|
+
headers?: {
|
|
1878
|
+
[key: string]: string;
|
|
1879
|
+
};
|
|
1880
|
+
statusCode?: number;
|
|
1881
|
+
body?: SeekVideoFileResponseBody;
|
|
1680
1882
|
static names(): {
|
|
1681
1883
|
[key: string]: string;
|
|
1682
1884
|
};
|
|
@@ -1720,10 +1922,11 @@ export declare class SendVerificationResponseBody extends $tea.Model {
|
|
|
1720
1922
|
});
|
|
1721
1923
|
}
|
|
1722
1924
|
export declare class SendVerificationResponse extends $tea.Model {
|
|
1723
|
-
headers
|
|
1925
|
+
headers?: {
|
|
1724
1926
|
[key: string]: string;
|
|
1725
1927
|
};
|
|
1726
|
-
|
|
1928
|
+
statusCode?: number;
|
|
1929
|
+
body?: SendVerificationResponseBody;
|
|
1727
1930
|
static names(): {
|
|
1728
1931
|
[key: string]: string;
|
|
1729
1932
|
};
|
|
@@ -1768,10 +1971,11 @@ export declare class SetTransferCalleePoolConfigResponseBody extends $tea.Model
|
|
|
1768
1971
|
});
|
|
1769
1972
|
}
|
|
1770
1973
|
export declare class SetTransferCalleePoolConfigResponse extends $tea.Model {
|
|
1771
|
-
headers
|
|
1974
|
+
headers?: {
|
|
1772
1975
|
[key: string]: string;
|
|
1773
1976
|
};
|
|
1774
|
-
|
|
1977
|
+
statusCode?: number;
|
|
1978
|
+
body?: SetTransferCalleePoolConfigResponseBody;
|
|
1775
1979
|
static names(): {
|
|
1776
1980
|
[key: string]: string;
|
|
1777
1981
|
};
|
|
@@ -1820,10 +2024,64 @@ export declare class SingleCallByTtsResponseBody extends $tea.Model {
|
|
|
1820
2024
|
});
|
|
1821
2025
|
}
|
|
1822
2026
|
export declare class SingleCallByTtsResponse extends $tea.Model {
|
|
1823
|
-
headers
|
|
2027
|
+
headers?: {
|
|
2028
|
+
[key: string]: string;
|
|
2029
|
+
};
|
|
2030
|
+
statusCode?: number;
|
|
2031
|
+
body?: SingleCallByTtsResponseBody;
|
|
2032
|
+
static names(): {
|
|
2033
|
+
[key: string]: string;
|
|
2034
|
+
};
|
|
2035
|
+
static types(): {
|
|
2036
|
+
[key: string]: any;
|
|
2037
|
+
};
|
|
2038
|
+
constructor(map?: {
|
|
2039
|
+
[key: string]: any;
|
|
2040
|
+
});
|
|
2041
|
+
}
|
|
2042
|
+
export declare class SingleCallByVideoRequest extends $tea.Model {
|
|
2043
|
+
calledNumber?: string;
|
|
2044
|
+
calledShowNumber?: string;
|
|
2045
|
+
outId?: string;
|
|
2046
|
+
ownerId?: number;
|
|
2047
|
+
playTimes?: number;
|
|
2048
|
+
resourceOwnerAccount?: string;
|
|
2049
|
+
resourceOwnerId?: number;
|
|
2050
|
+
speed?: number;
|
|
2051
|
+
videoCode?: string;
|
|
2052
|
+
voiceCode?: string;
|
|
2053
|
+
volume?: number;
|
|
2054
|
+
static names(): {
|
|
2055
|
+
[key: string]: string;
|
|
2056
|
+
};
|
|
2057
|
+
static types(): {
|
|
2058
|
+
[key: string]: any;
|
|
2059
|
+
};
|
|
2060
|
+
constructor(map?: {
|
|
2061
|
+
[key: string]: any;
|
|
2062
|
+
});
|
|
2063
|
+
}
|
|
2064
|
+
export declare class SingleCallByVideoResponseBody extends $tea.Model {
|
|
2065
|
+
callId?: string;
|
|
2066
|
+
code?: string;
|
|
2067
|
+
message?: string;
|
|
2068
|
+
requestId?: string;
|
|
2069
|
+
static names(): {
|
|
1824
2070
|
[key: string]: string;
|
|
1825
2071
|
};
|
|
1826
|
-
|
|
2072
|
+
static types(): {
|
|
2073
|
+
[key: string]: any;
|
|
2074
|
+
};
|
|
2075
|
+
constructor(map?: {
|
|
2076
|
+
[key: string]: any;
|
|
2077
|
+
});
|
|
2078
|
+
}
|
|
2079
|
+
export declare class SingleCallByVideoResponse extends $tea.Model {
|
|
2080
|
+
headers?: {
|
|
2081
|
+
[key: string]: string;
|
|
2082
|
+
};
|
|
2083
|
+
statusCode?: number;
|
|
2084
|
+
body?: SingleCallByVideoResponseBody;
|
|
1827
2085
|
static names(): {
|
|
1828
2086
|
[key: string]: string;
|
|
1829
2087
|
};
|
|
@@ -1871,10 +2129,61 @@ export declare class SingleCallByVoiceResponseBody extends $tea.Model {
|
|
|
1871
2129
|
});
|
|
1872
2130
|
}
|
|
1873
2131
|
export declare class SingleCallByVoiceResponse extends $tea.Model {
|
|
1874
|
-
headers
|
|
2132
|
+
headers?: {
|
|
1875
2133
|
[key: string]: string;
|
|
1876
2134
|
};
|
|
1877
|
-
|
|
2135
|
+
statusCode?: number;
|
|
2136
|
+
body?: SingleCallByVoiceResponseBody;
|
|
2137
|
+
static names(): {
|
|
2138
|
+
[key: string]: string;
|
|
2139
|
+
};
|
|
2140
|
+
static types(): {
|
|
2141
|
+
[key: string]: any;
|
|
2142
|
+
};
|
|
2143
|
+
constructor(map?: {
|
|
2144
|
+
[key: string]: any;
|
|
2145
|
+
});
|
|
2146
|
+
}
|
|
2147
|
+
export declare class SkipVideoFileRequest extends $tea.Model {
|
|
2148
|
+
callId?: string;
|
|
2149
|
+
calledNumber?: string;
|
|
2150
|
+
outId?: string;
|
|
2151
|
+
ownerId?: number;
|
|
2152
|
+
resourceOwnerAccount?: string;
|
|
2153
|
+
resourceOwnerId?: number;
|
|
2154
|
+
skipTimes?: number;
|
|
2155
|
+
static names(): {
|
|
2156
|
+
[key: string]: string;
|
|
2157
|
+
};
|
|
2158
|
+
static types(): {
|
|
2159
|
+
[key: string]: any;
|
|
2160
|
+
};
|
|
2161
|
+
constructor(map?: {
|
|
2162
|
+
[key: string]: any;
|
|
2163
|
+
});
|
|
2164
|
+
}
|
|
2165
|
+
export declare class SkipVideoFileResponseBody extends $tea.Model {
|
|
2166
|
+
accessDeniedDetail?: string;
|
|
2167
|
+
code?: string;
|
|
2168
|
+
data?: boolean;
|
|
2169
|
+
message?: string;
|
|
2170
|
+
success?: boolean;
|
|
2171
|
+
static names(): {
|
|
2172
|
+
[key: string]: string;
|
|
2173
|
+
};
|
|
2174
|
+
static types(): {
|
|
2175
|
+
[key: string]: any;
|
|
2176
|
+
};
|
|
2177
|
+
constructor(map?: {
|
|
2178
|
+
[key: string]: any;
|
|
2179
|
+
});
|
|
2180
|
+
}
|
|
2181
|
+
export declare class SkipVideoFileResponse extends $tea.Model {
|
|
2182
|
+
headers?: {
|
|
2183
|
+
[key: string]: string;
|
|
2184
|
+
};
|
|
2185
|
+
statusCode?: number;
|
|
2186
|
+
body?: SkipVideoFileResponseBody;
|
|
1878
2187
|
static names(): {
|
|
1879
2188
|
[key: string]: string;
|
|
1880
2189
|
};
|
|
@@ -1899,6 +2208,7 @@ export declare class SmartCallRequest extends $tea.Model {
|
|
|
1899
2208
|
earlyMediaAsr?: boolean;
|
|
1900
2209
|
enableITN?: boolean;
|
|
1901
2210
|
muteTime?: number;
|
|
2211
|
+
noiseThreshold?: number;
|
|
1902
2212
|
outId?: string;
|
|
1903
2213
|
ownerId?: number;
|
|
1904
2214
|
pauseTime?: number;
|
|
@@ -1941,10 +2251,11 @@ export declare class SmartCallResponseBody extends $tea.Model {
|
|
|
1941
2251
|
});
|
|
1942
2252
|
}
|
|
1943
2253
|
export declare class SmartCallResponse extends $tea.Model {
|
|
1944
|
-
headers
|
|
2254
|
+
headers?: {
|
|
1945
2255
|
[key: string]: string;
|
|
1946
2256
|
};
|
|
1947
|
-
|
|
2257
|
+
statusCode?: number;
|
|
2258
|
+
body?: SmartCallResponseBody;
|
|
1948
2259
|
static names(): {
|
|
1949
2260
|
[key: string]: string;
|
|
1950
2261
|
};
|
|
@@ -1988,10 +2299,11 @@ export declare class SmartCallOperateResponseBody extends $tea.Model {
|
|
|
1988
2299
|
});
|
|
1989
2300
|
}
|
|
1990
2301
|
export declare class SmartCallOperateResponse extends $tea.Model {
|
|
1991
|
-
headers
|
|
2302
|
+
headers?: {
|
|
1992
2303
|
[key: string]: string;
|
|
1993
2304
|
};
|
|
1994
|
-
|
|
2305
|
+
statusCode?: number;
|
|
2306
|
+
body?: SmartCallOperateResponseBody;
|
|
1995
2307
|
static names(): {
|
|
1996
2308
|
[key: string]: string;
|
|
1997
2309
|
};
|
|
@@ -2034,10 +2346,57 @@ export declare class StartRobotTaskResponseBody extends $tea.Model {
|
|
|
2034
2346
|
});
|
|
2035
2347
|
}
|
|
2036
2348
|
export declare class StartRobotTaskResponse extends $tea.Model {
|
|
2037
|
-
headers
|
|
2349
|
+
headers?: {
|
|
2038
2350
|
[key: string]: string;
|
|
2039
2351
|
};
|
|
2040
|
-
|
|
2352
|
+
statusCode?: number;
|
|
2353
|
+
body?: StartRobotTaskResponseBody;
|
|
2354
|
+
static names(): {
|
|
2355
|
+
[key: string]: string;
|
|
2356
|
+
};
|
|
2357
|
+
static types(): {
|
|
2358
|
+
[key: string]: any;
|
|
2359
|
+
};
|
|
2360
|
+
constructor(map?: {
|
|
2361
|
+
[key: string]: any;
|
|
2362
|
+
});
|
|
2363
|
+
}
|
|
2364
|
+
export declare class StopCallInConfigRequest extends $tea.Model {
|
|
2365
|
+
number?: string;
|
|
2366
|
+
ownerId?: number;
|
|
2367
|
+
resourceOwnerAccount?: string;
|
|
2368
|
+
resourceOwnerId?: number;
|
|
2369
|
+
static names(): {
|
|
2370
|
+
[key: string]: string;
|
|
2371
|
+
};
|
|
2372
|
+
static types(): {
|
|
2373
|
+
[key: string]: any;
|
|
2374
|
+
};
|
|
2375
|
+
constructor(map?: {
|
|
2376
|
+
[key: string]: any;
|
|
2377
|
+
});
|
|
2378
|
+
}
|
|
2379
|
+
export declare class StopCallInConfigResponseBody extends $tea.Model {
|
|
2380
|
+
code?: string;
|
|
2381
|
+
data?: boolean;
|
|
2382
|
+
message?: string;
|
|
2383
|
+
requestId?: string;
|
|
2384
|
+
static names(): {
|
|
2385
|
+
[key: string]: string;
|
|
2386
|
+
};
|
|
2387
|
+
static types(): {
|
|
2388
|
+
[key: string]: any;
|
|
2389
|
+
};
|
|
2390
|
+
constructor(map?: {
|
|
2391
|
+
[key: string]: any;
|
|
2392
|
+
});
|
|
2393
|
+
}
|
|
2394
|
+
export declare class StopCallInConfigResponse extends $tea.Model {
|
|
2395
|
+
headers?: {
|
|
2396
|
+
[key: string]: string;
|
|
2397
|
+
};
|
|
2398
|
+
statusCode?: number;
|
|
2399
|
+
body?: StopCallInConfigResponseBody;
|
|
2041
2400
|
static names(): {
|
|
2042
2401
|
[key: string]: string;
|
|
2043
2402
|
};
|
|
@@ -2079,10 +2438,11 @@ export declare class StopRobotTaskResponseBody extends $tea.Model {
|
|
|
2079
2438
|
});
|
|
2080
2439
|
}
|
|
2081
2440
|
export declare class StopRobotTaskResponse extends $tea.Model {
|
|
2082
|
-
headers
|
|
2441
|
+
headers?: {
|
|
2083
2442
|
[key: string]: string;
|
|
2084
2443
|
};
|
|
2085
|
-
|
|
2444
|
+
statusCode?: number;
|
|
2445
|
+
body?: StopRobotTaskResponseBody;
|
|
2086
2446
|
static names(): {
|
|
2087
2447
|
[key: string]: string;
|
|
2088
2448
|
};
|
|
@@ -2133,10 +2493,11 @@ export declare class SubmitHotlineTransferRegisterResponseBody extends $tea.Mode
|
|
|
2133
2493
|
});
|
|
2134
2494
|
}
|
|
2135
2495
|
export declare class SubmitHotlineTransferRegisterResponse extends $tea.Model {
|
|
2136
|
-
headers
|
|
2496
|
+
headers?: {
|
|
2137
2497
|
[key: string]: string;
|
|
2138
2498
|
};
|
|
2139
|
-
|
|
2499
|
+
statusCode?: number;
|
|
2500
|
+
body?: SubmitHotlineTransferRegisterResponseBody;
|
|
2140
2501
|
static names(): {
|
|
2141
2502
|
[key: string]: string;
|
|
2142
2503
|
};
|
|
@@ -2147,14 +2508,14 @@ export declare class SubmitHotlineTransferRegisterResponse extends $tea.Model {
|
|
|
2147
2508
|
[key: string]: any;
|
|
2148
2509
|
});
|
|
2149
2510
|
}
|
|
2150
|
-
export declare class
|
|
2511
|
+
export declare class UpgradeVideoFileRequest extends $tea.Model {
|
|
2512
|
+
callId?: string;
|
|
2151
2513
|
calledNumber?: string;
|
|
2152
|
-
|
|
2514
|
+
mediaType?: string;
|
|
2515
|
+
outId?: string;
|
|
2153
2516
|
ownerId?: number;
|
|
2154
2517
|
resourceOwnerAccount?: string;
|
|
2155
2518
|
resourceOwnerId?: number;
|
|
2156
|
-
ttsParam?: string;
|
|
2157
|
-
ttsParamHead?: string;
|
|
2158
2519
|
static names(): {
|
|
2159
2520
|
[key: string]: string;
|
|
2160
2521
|
};
|
|
@@ -2165,11 +2526,14 @@ export declare class UploadRobotTaskCalledFileRequest extends $tea.Model {
|
|
|
2165
2526
|
[key: string]: any;
|
|
2166
2527
|
});
|
|
2167
2528
|
}
|
|
2168
|
-
export declare class
|
|
2529
|
+
export declare class UpgradeVideoFileResponseBody extends $tea.Model {
|
|
2530
|
+
accessDeniedDetail?: string;
|
|
2169
2531
|
code?: string;
|
|
2170
|
-
data?:
|
|
2532
|
+
data?: {
|
|
2533
|
+
[key: string]: any;
|
|
2534
|
+
};
|
|
2171
2535
|
message?: string;
|
|
2172
|
-
|
|
2536
|
+
success?: boolean;
|
|
2173
2537
|
static names(): {
|
|
2174
2538
|
[key: string]: string;
|
|
2175
2539
|
};
|
|
@@ -2180,11 +2544,12 @@ export declare class UploadRobotTaskCalledFileResponseBody extends $tea.Model {
|
|
|
2180
2544
|
[key: string]: any;
|
|
2181
2545
|
});
|
|
2182
2546
|
}
|
|
2183
|
-
export declare class
|
|
2184
|
-
headers
|
|
2547
|
+
export declare class UpgradeVideoFileResponse extends $tea.Model {
|
|
2548
|
+
headers?: {
|
|
2185
2549
|
[key: string]: string;
|
|
2186
2550
|
};
|
|
2187
|
-
|
|
2551
|
+
statusCode?: number;
|
|
2552
|
+
body?: UpgradeVideoFileResponseBody;
|
|
2188
2553
|
static names(): {
|
|
2189
2554
|
[key: string]: string;
|
|
2190
2555
|
};
|
|
@@ -2195,9 +2560,14 @@ export declare class UploadRobotTaskCalledFileResponse extends $tea.Model {
|
|
|
2195
2560
|
[key: string]: any;
|
|
2196
2561
|
});
|
|
2197
2562
|
}
|
|
2198
|
-
export declare class
|
|
2199
|
-
|
|
2200
|
-
|
|
2563
|
+
export declare class UploadRobotTaskCalledFileRequest extends $tea.Model {
|
|
2564
|
+
calledNumber?: string;
|
|
2565
|
+
id?: number;
|
|
2566
|
+
ownerId?: number;
|
|
2567
|
+
resourceOwnerAccount?: string;
|
|
2568
|
+
resourceOwnerId?: number;
|
|
2569
|
+
ttsParam?: string;
|
|
2570
|
+
ttsParamHead?: string;
|
|
2201
2571
|
static names(): {
|
|
2202
2572
|
[key: string]: string;
|
|
2203
2573
|
};
|
|
@@ -2208,10 +2578,11 @@ export declare class GetCallInfoResponseBodyData extends $tea.Model {
|
|
|
2208
2578
|
[key: string]: any;
|
|
2209
2579
|
});
|
|
2210
2580
|
}
|
|
2211
|
-
export declare class
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2581
|
+
export declare class UploadRobotTaskCalledFileResponseBody extends $tea.Model {
|
|
2582
|
+
code?: string;
|
|
2583
|
+
data?: string;
|
|
2584
|
+
message?: string;
|
|
2585
|
+
requestId?: string;
|
|
2215
2586
|
static names(): {
|
|
2216
2587
|
[key: string]: string;
|
|
2217
2588
|
};
|
|
@@ -2222,15 +2593,26 @@ export declare class GetHotlineQualificationByOrderResponseBodyData extends $tea
|
|
|
2222
2593
|
[key: string]: any;
|
|
2223
2594
|
});
|
|
2224
2595
|
}
|
|
2225
|
-
export declare class
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2596
|
+
export declare class UploadRobotTaskCalledFileResponse extends $tea.Model {
|
|
2597
|
+
headers?: {
|
|
2598
|
+
[key: string]: string;
|
|
2599
|
+
};
|
|
2600
|
+
statusCode?: number;
|
|
2601
|
+
body?: UploadRobotTaskCalledFileResponseBody;
|
|
2602
|
+
static names(): {
|
|
2603
|
+
[key: string]: string;
|
|
2604
|
+
};
|
|
2605
|
+
static types(): {
|
|
2606
|
+
[key: string]: any;
|
|
2607
|
+
};
|
|
2608
|
+
constructor(map?: {
|
|
2609
|
+
[key: string]: any;
|
|
2610
|
+
});
|
|
2611
|
+
}
|
|
2612
|
+
export declare class GetHotlineQualificationByOrderResponseBodyData extends $tea.Model {
|
|
2613
|
+
orderId?: string;
|
|
2614
|
+
qualificationId?: string;
|
|
2615
|
+
status?: string;
|
|
2234
2616
|
static names(): {
|
|
2235
2617
|
[key: string]: string;
|
|
2236
2618
|
};
|
|
@@ -2437,25 +2819,6 @@ export declare class QueryVoiceFileAuditInfoResponseBodyData extends $tea.Model
|
|
|
2437
2819
|
[key: string]: any;
|
|
2438
2820
|
});
|
|
2439
2821
|
}
|
|
2440
|
-
export declare class RefreshMqttTokenResponseBodyData extends $tea.Model {
|
|
2441
|
-
clientId?: string;
|
|
2442
|
-
expireTime?: string;
|
|
2443
|
-
host?: string;
|
|
2444
|
-
instanceId?: string;
|
|
2445
|
-
p2pTopic?: string;
|
|
2446
|
-
serverId?: string;
|
|
2447
|
-
token?: string;
|
|
2448
|
-
username?: string;
|
|
2449
|
-
static names(): {
|
|
2450
|
-
[key: string]: string;
|
|
2451
|
-
};
|
|
2452
|
-
static types(): {
|
|
2453
|
-
[key: string]: any;
|
|
2454
|
-
};
|
|
2455
|
-
constructor(map?: {
|
|
2456
|
-
[key: string]: any;
|
|
2457
|
-
});
|
|
2458
|
-
}
|
|
2459
2822
|
export declare class SetTransferCalleePoolConfigRequestDetails extends $tea.Model {
|
|
2460
2823
|
called?: string;
|
|
2461
2824
|
caller?: string;
|
|
@@ -2488,94 +2851,677 @@ export default class Client extends OpenApi {
|
|
|
2488
2851
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
2489
2852
|
[key: string]: string;
|
|
2490
2853
|
}, endpoint: string): string;
|
|
2491
|
-
|
|
2492
|
-
|
|
2854
|
+
/**
|
|
2855
|
+
* ### QPS limits
|
|
2856
|
+
* You can call this operation up to 200 times per second per account.
|
|
2857
|
+
*
|
|
2858
|
+
* @param request AddVirtualNumberRelationRequest
|
|
2859
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2860
|
+
* @return AddVirtualNumberRelationResponse
|
|
2861
|
+
*/
|
|
2493
2862
|
addVirtualNumberRelationWithOptions(request: AddVirtualNumberRelationRequest, runtime: $Util.RuntimeOptions): Promise<AddVirtualNumberRelationResponse>;
|
|
2863
|
+
/**
|
|
2864
|
+
* ### QPS limits
|
|
2865
|
+
* You can call this operation up to 200 times per second per account.
|
|
2866
|
+
*
|
|
2867
|
+
* @param request AddVirtualNumberRelationRequest
|
|
2868
|
+
* @return AddVirtualNumberRelationResponse
|
|
2869
|
+
*/
|
|
2494
2870
|
addVirtualNumberRelation(request: AddVirtualNumberRelationRequest): Promise<AddVirtualNumberRelationResponse>;
|
|
2871
|
+
/**
|
|
2872
|
+
* * In an intelligent speech interaction task, you can use the robot communication scripts preset in the Voice Messaging Service console, or invoke the callback function to return the response mode configured by the business party in each call.
|
|
2873
|
+
* * The BatchRobotSmartCall operation is used to initiate an outbound robocall task by using the robot communication scripts preset in the Voice Messaging Service console.
|
|
2874
|
+
* ## Prerequisites
|
|
2875
|
+
* * You have passed the real-name verification for an enterprise user and passed the enterprise qualification review.
|
|
2876
|
+
* * You have purchased numbers in the [Voice Messaging Service console](https://dyvms.console.aliyun.com/dyvms.htm#/number/normal).
|
|
2877
|
+
* * You have added communication scripts on the [Communication script management](https://dyvms.console.aliyun.com/dyvms.htm#/smart-call/saas/robot/list) page, and the communication scripts have been approved.
|
|
2878
|
+
* > Before you call this operation, make sure that you are familiar with the [billing](https://www.aliyun.com/price/product#/vms/detail) of Voice Messaging Service (VMS).
|
|
2879
|
+
*
|
|
2880
|
+
* @param request BatchRobotSmartCallRequest
|
|
2881
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2882
|
+
* @return BatchRobotSmartCallResponse
|
|
2883
|
+
*/
|
|
2495
2884
|
batchRobotSmartCallWithOptions(request: BatchRobotSmartCallRequest, runtime: $Util.RuntimeOptions): Promise<BatchRobotSmartCallResponse>;
|
|
2885
|
+
/**
|
|
2886
|
+
* * In an intelligent speech interaction task, you can use the robot communication scripts preset in the Voice Messaging Service console, or invoke the callback function to return the response mode configured by the business party in each call.
|
|
2887
|
+
* * The BatchRobotSmartCall operation is used to initiate an outbound robocall task by using the robot communication scripts preset in the Voice Messaging Service console.
|
|
2888
|
+
* ## Prerequisites
|
|
2889
|
+
* * You have passed the real-name verification for an enterprise user and passed the enterprise qualification review.
|
|
2890
|
+
* * You have purchased numbers in the [Voice Messaging Service console](https://dyvms.console.aliyun.com/dyvms.htm#/number/normal).
|
|
2891
|
+
* * You have added communication scripts on the [Communication script management](https://dyvms.console.aliyun.com/dyvms.htm#/smart-call/saas/robot/list) page, and the communication scripts have been approved.
|
|
2892
|
+
* > Before you call this operation, make sure that you are familiar with the [billing](https://www.aliyun.com/price/product#/vms/detail) of Voice Messaging Service (VMS).
|
|
2893
|
+
*
|
|
2894
|
+
* @param request BatchRobotSmartCallRequest
|
|
2895
|
+
* @return BatchRobotSmartCallResponse
|
|
2896
|
+
*/
|
|
2496
2897
|
batchRobotSmartCall(request: BatchRobotSmartCallRequest): Promise<BatchRobotSmartCallResponse>;
|
|
2497
|
-
|
|
2498
|
-
|
|
2898
|
+
/**
|
|
2899
|
+
* ### QPS limits
|
|
2900
|
+
* You can call this operation up to 100 times per second per account.
|
|
2901
|
+
*
|
|
2902
|
+
* @param request CancelOrderRobotTaskRequest
|
|
2903
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2904
|
+
* @return CancelOrderRobotTaskResponse
|
|
2905
|
+
*/
|
|
2499
2906
|
cancelOrderRobotTaskWithOptions(request: CancelOrderRobotTaskRequest, runtime: $Util.RuntimeOptions): Promise<CancelOrderRobotTaskResponse>;
|
|
2907
|
+
/**
|
|
2908
|
+
* ### QPS limits
|
|
2909
|
+
* You can call this operation up to 100 times per second per account.
|
|
2910
|
+
*
|
|
2911
|
+
* @param request CancelOrderRobotTaskRequest
|
|
2912
|
+
* @return CancelOrderRobotTaskResponse
|
|
2913
|
+
*/
|
|
2500
2914
|
cancelOrderRobotTask(request: CancelOrderRobotTaskRequest): Promise<CancelOrderRobotTaskResponse>;
|
|
2915
|
+
/**
|
|
2916
|
+
* Only a task in progress can be terminated by calling the CancelRobotTask operation, and the task cannot be resumed after it is terminated.
|
|
2917
|
+
* ### QPS limits
|
|
2918
|
+
* You can call this operation up to 100 times per second per account.
|
|
2919
|
+
*
|
|
2920
|
+
* @param request CancelRobotTaskRequest
|
|
2921
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2922
|
+
* @return CancelRobotTaskResponse
|
|
2923
|
+
*/
|
|
2501
2924
|
cancelRobotTaskWithOptions(request: CancelRobotTaskRequest, runtime: $Util.RuntimeOptions): Promise<CancelRobotTaskResponse>;
|
|
2925
|
+
/**
|
|
2926
|
+
* Only a task in progress can be terminated by calling the CancelRobotTask operation, and the task cannot be resumed after it is terminated.
|
|
2927
|
+
* ### QPS limits
|
|
2928
|
+
* You can call this operation up to 100 times per second per account.
|
|
2929
|
+
*
|
|
2930
|
+
* @param request CancelRobotTaskRequest
|
|
2931
|
+
* @return CancelRobotTaskResponse
|
|
2932
|
+
*/
|
|
2502
2933
|
cancelRobotTask(request: CancelRobotTaskRequest): Promise<CancelRobotTaskResponse>;
|
|
2503
|
-
|
|
2504
|
-
|
|
2934
|
+
changeMediaTypeWithOptions(request: ChangeMediaTypeRequest, runtime: $Util.RuntimeOptions): Promise<ChangeMediaTypeResponse>;
|
|
2935
|
+
changeMediaType(request: ChangeMediaTypeRequest): Promise<ChangeMediaTypeResponse>;
|
|
2936
|
+
/**
|
|
2937
|
+
* You can create up to 1,000 voice notifications for each task.
|
|
2938
|
+
* ### QPS limits
|
|
2939
|
+
* You can call this operation up to 100 times per second per account.
|
|
2940
|
+
*
|
|
2941
|
+
* @param request CreateCallTaskRequest
|
|
2942
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2943
|
+
* @return CreateCallTaskResponse
|
|
2944
|
+
*/
|
|
2505
2945
|
createCallTaskWithOptions(request: CreateCallTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateCallTaskResponse>;
|
|
2946
|
+
/**
|
|
2947
|
+
* You can create up to 1,000 voice notifications for each task.
|
|
2948
|
+
* ### QPS limits
|
|
2949
|
+
* You can call this operation up to 100 times per second per account.
|
|
2950
|
+
*
|
|
2951
|
+
* @param request CreateCallTaskRequest
|
|
2952
|
+
* @return CreateCallTaskResponse
|
|
2953
|
+
*/
|
|
2506
2954
|
createCallTask(request: CreateCallTaskRequest): Promise<CreateCallTaskResponse>;
|
|
2955
|
+
/**
|
|
2956
|
+
* You can call this operation to initiate an outbound robocall task by using the robot communication scripts preset in the Voice Messaging Service console. In an intelligent speech interaction task, you can use the robot communication scripts preset in the Voice Messaging Service console, or invoke the callback function to return the response mode configured by the business party in each call.
|
|
2957
|
+
* ### QPS limits
|
|
2958
|
+
* You can call this operation up to 100 times per second per account.
|
|
2959
|
+
*
|
|
2960
|
+
* @param request CreateRobotTaskRequest
|
|
2961
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2962
|
+
* @return CreateRobotTaskResponse
|
|
2963
|
+
*/
|
|
2507
2964
|
createRobotTaskWithOptions(request: CreateRobotTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateRobotTaskResponse>;
|
|
2965
|
+
/**
|
|
2966
|
+
* You can call this operation to initiate an outbound robocall task by using the robot communication scripts preset in the Voice Messaging Service console. In an intelligent speech interaction task, you can use the robot communication scripts preset in the Voice Messaging Service console, or invoke the callback function to return the response mode configured by the business party in each call.
|
|
2967
|
+
* ### QPS limits
|
|
2968
|
+
* You can call this operation up to 100 times per second per account.
|
|
2969
|
+
*
|
|
2970
|
+
* @param request CreateRobotTaskRequest
|
|
2971
|
+
* @return CreateRobotTaskResponse
|
|
2972
|
+
*/
|
|
2508
2973
|
createRobotTask(request: CreateRobotTaskRequest): Promise<CreateRobotTaskResponse>;
|
|
2974
|
+
degradeVideoFileWithOptions(request: DegradeVideoFileRequest, runtime: $Util.RuntimeOptions): Promise<DegradeVideoFileResponse>;
|
|
2975
|
+
degradeVideoFile(request: DegradeVideoFileRequest): Promise<DegradeVideoFileResponse>;
|
|
2976
|
+
/**
|
|
2977
|
+
* You can call this operation to delete only tasks that are not started, that are completed, and that are terminated.
|
|
2978
|
+
* ### QPS limits
|
|
2979
|
+
* You can call this operation up to 100 times per second per account.
|
|
2980
|
+
*
|
|
2981
|
+
* @param request DeleteRobotTaskRequest
|
|
2982
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
2983
|
+
* @return DeleteRobotTaskResponse
|
|
2984
|
+
*/
|
|
2509
2985
|
deleteRobotTaskWithOptions(request: DeleteRobotTaskRequest, runtime: $Util.RuntimeOptions): Promise<DeleteRobotTaskResponse>;
|
|
2986
|
+
/**
|
|
2987
|
+
* You can call this operation to delete only tasks that are not started, that are completed, and that are terminated.
|
|
2988
|
+
* ### QPS limits
|
|
2989
|
+
* You can call this operation up to 100 times per second per account.
|
|
2990
|
+
*
|
|
2991
|
+
* @param request DeleteRobotTaskRequest
|
|
2992
|
+
* @return DeleteRobotTaskResponse
|
|
2993
|
+
*/
|
|
2510
2994
|
deleteRobotTask(request: DeleteRobotTaskRequest): Promise<DeleteRobotTaskResponse>;
|
|
2995
|
+
/**
|
|
2996
|
+
* ### QPS limits
|
|
2997
|
+
* You can call this operation up to 100 times per second per account.
|
|
2998
|
+
*
|
|
2999
|
+
* @param request ExecuteCallTaskRequest
|
|
3000
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3001
|
+
* @return ExecuteCallTaskResponse
|
|
3002
|
+
*/
|
|
2511
3003
|
executeCallTaskWithOptions(request: ExecuteCallTaskRequest, runtime: $Util.RuntimeOptions): Promise<ExecuteCallTaskResponse>;
|
|
3004
|
+
/**
|
|
3005
|
+
* ### QPS limits
|
|
3006
|
+
* You can call this operation up to 100 times per second per account.
|
|
3007
|
+
*
|
|
3008
|
+
* @param request ExecuteCallTaskRequest
|
|
3009
|
+
* @return ExecuteCallTaskResponse
|
|
3010
|
+
*/
|
|
2512
3011
|
executeCallTask(request: ExecuteCallTaskRequest): Promise<ExecuteCallTaskResponse>;
|
|
2513
|
-
|
|
2514
|
-
|
|
3012
|
+
getCallProgressWithOptions(request: GetCallProgressRequest, runtime: $Util.RuntimeOptions): Promise<GetCallProgressResponse>;
|
|
3013
|
+
getCallProgress(request: GetCallProgressRequest): Promise<GetCallProgressResponse>;
|
|
3014
|
+
/**
|
|
3015
|
+
* ### QPS limits
|
|
3016
|
+
* You can call this operation up to 100 times per second per account.
|
|
3017
|
+
*
|
|
3018
|
+
* @param request GetHotlineQualificationByOrderRequest
|
|
3019
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3020
|
+
* @return GetHotlineQualificationByOrderResponse
|
|
3021
|
+
*/
|
|
2515
3022
|
getHotlineQualificationByOrderWithOptions(request: GetHotlineQualificationByOrderRequest, runtime: $Util.RuntimeOptions): Promise<GetHotlineQualificationByOrderResponse>;
|
|
3023
|
+
/**
|
|
3024
|
+
* ### QPS limits
|
|
3025
|
+
* You can call this operation up to 100 times per second per account.
|
|
3026
|
+
*
|
|
3027
|
+
* @param request GetHotlineQualificationByOrderRequest
|
|
3028
|
+
* @return GetHotlineQualificationByOrderResponse
|
|
3029
|
+
*/
|
|
2516
3030
|
getHotlineQualificationByOrder(request: GetHotlineQualificationByOrderRequest): Promise<GetHotlineQualificationByOrderResponse>;
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
3031
|
+
/**
|
|
3032
|
+
* ### QPS limits
|
|
3033
|
+
* You can call this operation up to five times per second per account.
|
|
3034
|
+
*
|
|
3035
|
+
* @param request GetTokenRequest
|
|
3036
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3037
|
+
* @return GetTokenResponse
|
|
3038
|
+
*/
|
|
2521
3039
|
getTokenWithOptions(request: GetTokenRequest, runtime: $Util.RuntimeOptions): Promise<GetTokenResponse>;
|
|
3040
|
+
/**
|
|
3041
|
+
* ### QPS limits
|
|
3042
|
+
* You can call this operation up to five times per second per account.
|
|
3043
|
+
*
|
|
3044
|
+
* @param request GetTokenRequest
|
|
3045
|
+
* @return GetTokenResponse
|
|
3046
|
+
*/
|
|
2522
3047
|
getToken(request: GetTokenRequest): Promise<GetTokenResponse>;
|
|
3048
|
+
getVideoFieldUrlWithOptions(request: GetVideoFieldUrlRequest, runtime: $Util.RuntimeOptions): Promise<GetVideoFieldUrlResponse>;
|
|
3049
|
+
getVideoFieldUrl(request: GetVideoFieldUrlRequest): Promise<GetVideoFieldUrlResponse>;
|
|
3050
|
+
/**
|
|
3051
|
+
* * Your enterprise qualification is approved. For more information, see [Submit enterprise qualifications](~~149795~~).
|
|
3052
|
+
* * Voice numbers are purchased. For more information, see [Purchase numbers](~~149794~~).
|
|
3053
|
+
* * When the subscriber answers the call, the subscriber hears a voice that instructs the subscriber to press a key as needed. If the [message receipt](~~112503~~) feature is enabled, the Voice Messaging Service (VMS) platform returns the information about the key pressed by the subscriber to the business system. The key information includes the order confirmation, questionnaire survey, and satisfaction survey completed by the subscriber.
|
|
3054
|
+
* ## QPS limits
|
|
3055
|
+
* You can call this operation up to 100 times per second per account.
|
|
3056
|
+
*
|
|
3057
|
+
* @param request IvrCallRequest
|
|
3058
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3059
|
+
* @return IvrCallResponse
|
|
3060
|
+
*/
|
|
2523
3061
|
ivrCallWithOptions(request: IvrCallRequest, runtime: $Util.RuntimeOptions): Promise<IvrCallResponse>;
|
|
3062
|
+
/**
|
|
3063
|
+
* * Your enterprise qualification is approved. For more information, see [Submit enterprise qualifications](~~149795~~).
|
|
3064
|
+
* * Voice numbers are purchased. For more information, see [Purchase numbers](~~149794~~).
|
|
3065
|
+
* * When the subscriber answers the call, the subscriber hears a voice that instructs the subscriber to press a key as needed. If the [message receipt](~~112503~~) feature is enabled, the Voice Messaging Service (VMS) platform returns the information about the key pressed by the subscriber to the business system. The key information includes the order confirmation, questionnaire survey, and satisfaction survey completed by the subscriber.
|
|
3066
|
+
* ## QPS limits
|
|
3067
|
+
* You can call this operation up to 100 times per second per account.
|
|
3068
|
+
*
|
|
3069
|
+
* @param request IvrCallRequest
|
|
3070
|
+
* @return IvrCallResponse
|
|
3071
|
+
*/
|
|
2524
3072
|
ivrCall(request: IvrCallRequest): Promise<IvrCallResponse>;
|
|
3073
|
+
/**
|
|
3074
|
+
* ### QPS limits
|
|
3075
|
+
* You can call this operation up to 100 times per second per account.
|
|
3076
|
+
*
|
|
3077
|
+
* @param request ListCallTaskRequest
|
|
3078
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3079
|
+
* @return ListCallTaskResponse
|
|
3080
|
+
*/
|
|
2525
3081
|
listCallTaskWithOptions(request: ListCallTaskRequest, runtime: $Util.RuntimeOptions): Promise<ListCallTaskResponse>;
|
|
3082
|
+
/**
|
|
3083
|
+
* ### QPS limits
|
|
3084
|
+
* You can call this operation up to 100 times per second per account.
|
|
3085
|
+
*
|
|
3086
|
+
* @param request ListCallTaskRequest
|
|
3087
|
+
* @return ListCallTaskResponse
|
|
3088
|
+
*/
|
|
2526
3089
|
listCallTask(request: ListCallTaskRequest): Promise<ListCallTaskResponse>;
|
|
3090
|
+
/**
|
|
3091
|
+
* ### QPS limits
|
|
3092
|
+
* You can call this operation up to 100 times per second per account.
|
|
3093
|
+
*
|
|
3094
|
+
* @param request ListCallTaskDetailRequest
|
|
3095
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3096
|
+
* @return ListCallTaskDetailResponse
|
|
3097
|
+
*/
|
|
2527
3098
|
listCallTaskDetailWithOptions(request: ListCallTaskDetailRequest, runtime: $Util.RuntimeOptions): Promise<ListCallTaskDetailResponse>;
|
|
3099
|
+
/**
|
|
3100
|
+
* ### QPS limits
|
|
3101
|
+
* You can call this operation up to 100 times per second per account.
|
|
3102
|
+
*
|
|
3103
|
+
* @param request ListCallTaskDetailRequest
|
|
3104
|
+
* @return ListCallTaskDetailResponse
|
|
3105
|
+
*/
|
|
2528
3106
|
listCallTaskDetail(request: ListCallTaskDetailRequest): Promise<ListCallTaskDetailResponse>;
|
|
3107
|
+
/**
|
|
3108
|
+
* ### QPS limits
|
|
3109
|
+
* You can call this operation up to 100 times per second per account.
|
|
3110
|
+
*
|
|
3111
|
+
* @param request ListHotlineTransferNumberRequest
|
|
3112
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3113
|
+
* @return ListHotlineTransferNumberResponse
|
|
3114
|
+
*/
|
|
2529
3115
|
listHotlineTransferNumberWithOptions(request: ListHotlineTransferNumberRequest, runtime: $Util.RuntimeOptions): Promise<ListHotlineTransferNumberResponse>;
|
|
3116
|
+
/**
|
|
3117
|
+
* ### QPS limits
|
|
3118
|
+
* You can call this operation up to 100 times per second per account.
|
|
3119
|
+
*
|
|
3120
|
+
* @param request ListHotlineTransferNumberRequest
|
|
3121
|
+
* @return ListHotlineTransferNumberResponse
|
|
3122
|
+
*/
|
|
2530
3123
|
listHotlineTransferNumber(request: ListHotlineTransferNumberRequest): Promise<ListHotlineTransferNumberResponse>;
|
|
3124
|
+
/**
|
|
3125
|
+
* ### QPS limits
|
|
3126
|
+
* You can call this operation up to 100 times per second per account.
|
|
3127
|
+
*
|
|
3128
|
+
* @param request ListHotlineTransferRegisterFileRequest
|
|
3129
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3130
|
+
* @return ListHotlineTransferRegisterFileResponse
|
|
3131
|
+
*/
|
|
2531
3132
|
listHotlineTransferRegisterFileWithOptions(request: ListHotlineTransferRegisterFileRequest, runtime: $Util.RuntimeOptions): Promise<ListHotlineTransferRegisterFileResponse>;
|
|
3133
|
+
/**
|
|
3134
|
+
* ### QPS limits
|
|
3135
|
+
* You can call this operation up to 100 times per second per account.
|
|
3136
|
+
*
|
|
3137
|
+
* @param request ListHotlineTransferRegisterFileRequest
|
|
3138
|
+
* @return ListHotlineTransferRegisterFileResponse
|
|
3139
|
+
*/
|
|
2532
3140
|
listHotlineTransferRegisterFile(request: ListHotlineTransferRegisterFileRequest): Promise<ListHotlineTransferRegisterFileResponse>;
|
|
3141
|
+
pauseVideoFileWithOptions(request: PauseVideoFileRequest, runtime: $Util.RuntimeOptions): Promise<PauseVideoFileResponse>;
|
|
3142
|
+
pauseVideoFile(request: PauseVideoFileRequest): Promise<PauseVideoFileResponse>;
|
|
3143
|
+
playVideoFileWithOptions(request: PlayVideoFileRequest, runtime: $Util.RuntimeOptions): Promise<PlayVideoFileResponse>;
|
|
3144
|
+
playVideoFile(request: PlayVideoFileRequest): Promise<PlayVideoFileResponse>;
|
|
3145
|
+
/**
|
|
3146
|
+
* QueryCallDetailByCallId is a common query operation. You can call this operation to query the details of a voice notification, voice verification code, interactive voice response (IVR), intelligent inbound voice call, intelligent outbound voice call, or intelligent robocall.
|
|
3147
|
+
* ### QPS limits
|
|
3148
|
+
* You can call this operation up to 100 times per second per account.
|
|
3149
|
+
*
|
|
3150
|
+
* @param request QueryCallDetailByCallIdRequest
|
|
3151
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3152
|
+
* @return QueryCallDetailByCallIdResponse
|
|
3153
|
+
*/
|
|
2533
3154
|
queryCallDetailByCallIdWithOptions(request: QueryCallDetailByCallIdRequest, runtime: $Util.RuntimeOptions): Promise<QueryCallDetailByCallIdResponse>;
|
|
3155
|
+
/**
|
|
3156
|
+
* QueryCallDetailByCallId is a common query operation. You can call this operation to query the details of a voice notification, voice verification code, interactive voice response (IVR), intelligent inbound voice call, intelligent outbound voice call, or intelligent robocall.
|
|
3157
|
+
* ### QPS limits
|
|
3158
|
+
* You can call this operation up to 100 times per second per account.
|
|
3159
|
+
*
|
|
3160
|
+
* @param request QueryCallDetailByCallIdRequest
|
|
3161
|
+
* @return QueryCallDetailByCallIdResponse
|
|
3162
|
+
*/
|
|
2534
3163
|
queryCallDetailByCallId(request: QueryCallDetailByCallIdRequest): Promise<QueryCallDetailByCallIdResponse>;
|
|
2535
3164
|
queryCallDetailByTaskIdWithOptions(request: QueryCallDetailByTaskIdRequest, runtime: $Util.RuntimeOptions): Promise<QueryCallDetailByTaskIdResponse>;
|
|
2536
3165
|
queryCallDetailByTaskId(request: QueryCallDetailByTaskIdRequest): Promise<QueryCallDetailByTaskIdResponse>;
|
|
3166
|
+
/**
|
|
3167
|
+
* ### QPS limits
|
|
3168
|
+
* You can call this operation up to 100 times per second per account.
|
|
3169
|
+
*
|
|
3170
|
+
* @param request QueryCallInPoolTransferConfigRequest
|
|
3171
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3172
|
+
* @return QueryCallInPoolTransferConfigResponse
|
|
3173
|
+
*/
|
|
2537
3174
|
queryCallInPoolTransferConfigWithOptions(request: QueryCallInPoolTransferConfigRequest, runtime: $Util.RuntimeOptions): Promise<QueryCallInPoolTransferConfigResponse>;
|
|
3175
|
+
/**
|
|
3176
|
+
* ### QPS limits
|
|
3177
|
+
* You can call this operation up to 100 times per second per account.
|
|
3178
|
+
*
|
|
3179
|
+
* @param request QueryCallInPoolTransferConfigRequest
|
|
3180
|
+
* @return QueryCallInPoolTransferConfigResponse
|
|
3181
|
+
*/
|
|
2538
3182
|
queryCallInPoolTransferConfig(request: QueryCallInPoolTransferConfigRequest): Promise<QueryCallInPoolTransferConfigResponse>;
|
|
3183
|
+
/**
|
|
3184
|
+
* ### QPS limits
|
|
3185
|
+
* You can call this operation up to 100 times per second per account.
|
|
3186
|
+
*
|
|
3187
|
+
* @param request QueryCallInTransferRecordRequest
|
|
3188
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3189
|
+
* @return QueryCallInTransferRecordResponse
|
|
3190
|
+
*/
|
|
2539
3191
|
queryCallInTransferRecordWithOptions(request: QueryCallInTransferRecordRequest, runtime: $Util.RuntimeOptions): Promise<QueryCallInTransferRecordResponse>;
|
|
3192
|
+
/**
|
|
3193
|
+
* ### QPS limits
|
|
3194
|
+
* You can call this operation up to 100 times per second per account.
|
|
3195
|
+
*
|
|
3196
|
+
* @param request QueryCallInTransferRecordRequest
|
|
3197
|
+
* @return QueryCallInTransferRecordResponse
|
|
3198
|
+
*/
|
|
2540
3199
|
queryCallInTransferRecord(request: QueryCallInTransferRecordRequest): Promise<QueryCallInTransferRecordResponse>;
|
|
2541
3200
|
queryRobotInfoListWithOptions(request: QueryRobotInfoListRequest, runtime: $Util.RuntimeOptions): Promise<QueryRobotInfoListResponse>;
|
|
2542
3201
|
queryRobotInfoList(request: QueryRobotInfoListRequest): Promise<QueryRobotInfoListResponse>;
|
|
3202
|
+
/**
|
|
3203
|
+
* ### QPS limits
|
|
3204
|
+
* You can call this operation up to 100 times per second per account.
|
|
3205
|
+
*
|
|
3206
|
+
* @param request QueryRobotTaskCallDetailRequest
|
|
3207
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3208
|
+
* @return QueryRobotTaskCallDetailResponse
|
|
3209
|
+
*/
|
|
2543
3210
|
queryRobotTaskCallDetailWithOptions(request: QueryRobotTaskCallDetailRequest, runtime: $Util.RuntimeOptions): Promise<QueryRobotTaskCallDetailResponse>;
|
|
3211
|
+
/**
|
|
3212
|
+
* ### QPS limits
|
|
3213
|
+
* You can call this operation up to 100 times per second per account.
|
|
3214
|
+
*
|
|
3215
|
+
* @param request QueryRobotTaskCallDetailRequest
|
|
3216
|
+
* @return QueryRobotTaskCallDetailResponse
|
|
3217
|
+
*/
|
|
2544
3218
|
queryRobotTaskCallDetail(request: QueryRobotTaskCallDetailRequest): Promise<QueryRobotTaskCallDetailResponse>;
|
|
3219
|
+
/**
|
|
3220
|
+
* ### QPS limits
|
|
3221
|
+
* You can call this operation up to 100 times per second per account.
|
|
3222
|
+
*
|
|
3223
|
+
* @param request QueryRobotTaskCallListRequest
|
|
3224
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3225
|
+
* @return QueryRobotTaskCallListResponse
|
|
3226
|
+
*/
|
|
2545
3227
|
queryRobotTaskCallListWithOptions(request: QueryRobotTaskCallListRequest, runtime: $Util.RuntimeOptions): Promise<QueryRobotTaskCallListResponse>;
|
|
3228
|
+
/**
|
|
3229
|
+
* ### QPS limits
|
|
3230
|
+
* You can call this operation up to 100 times per second per account.
|
|
3231
|
+
*
|
|
3232
|
+
* @param request QueryRobotTaskCallListRequest
|
|
3233
|
+
* @return QueryRobotTaskCallListResponse
|
|
3234
|
+
*/
|
|
2546
3235
|
queryRobotTaskCallList(request: QueryRobotTaskCallListRequest): Promise<QueryRobotTaskCallListResponse>;
|
|
3236
|
+
/**
|
|
3237
|
+
* ### QPS limits
|
|
3238
|
+
* You can call this operation up to 100 times per second per account.
|
|
3239
|
+
*
|
|
3240
|
+
* @param request QueryRobotTaskDetailRequest
|
|
3241
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3242
|
+
* @return QueryRobotTaskDetailResponse
|
|
3243
|
+
*/
|
|
2547
3244
|
queryRobotTaskDetailWithOptions(request: QueryRobotTaskDetailRequest, runtime: $Util.RuntimeOptions): Promise<QueryRobotTaskDetailResponse>;
|
|
3245
|
+
/**
|
|
3246
|
+
* ### QPS limits
|
|
3247
|
+
* You can call this operation up to 100 times per second per account.
|
|
3248
|
+
*
|
|
3249
|
+
* @param request QueryRobotTaskDetailRequest
|
|
3250
|
+
* @return QueryRobotTaskDetailResponse
|
|
3251
|
+
*/
|
|
2548
3252
|
queryRobotTaskDetail(request: QueryRobotTaskDetailRequest): Promise<QueryRobotTaskDetailResponse>;
|
|
3253
|
+
/**
|
|
3254
|
+
* ### QPS limits
|
|
3255
|
+
* You can call this operation up to 100 times per second per account.
|
|
3256
|
+
*
|
|
3257
|
+
* @param request QueryRobotTaskListRequest
|
|
3258
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3259
|
+
* @return QueryRobotTaskListResponse
|
|
3260
|
+
*/
|
|
2549
3261
|
queryRobotTaskListWithOptions(request: QueryRobotTaskListRequest, runtime: $Util.RuntimeOptions): Promise<QueryRobotTaskListResponse>;
|
|
3262
|
+
/**
|
|
3263
|
+
* ### QPS limits
|
|
3264
|
+
* You can call this operation up to 100 times per second per account.
|
|
3265
|
+
*
|
|
3266
|
+
* @param request QueryRobotTaskListRequest
|
|
3267
|
+
* @return QueryRobotTaskListResponse
|
|
3268
|
+
*/
|
|
2550
3269
|
queryRobotTaskList(request: QueryRobotTaskListRequest): Promise<QueryRobotTaskListResponse>;
|
|
3270
|
+
/**
|
|
3271
|
+
* ### QPS limits
|
|
3272
|
+
* You can call this operation up to 100 times per second per account.
|
|
3273
|
+
*
|
|
3274
|
+
* @param request QueryRobotv2AllListRequest
|
|
3275
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3276
|
+
* @return QueryRobotv2AllListResponse
|
|
3277
|
+
*/
|
|
2551
3278
|
queryRobotv2AllListWithOptions(request: QueryRobotv2AllListRequest, runtime: $Util.RuntimeOptions): Promise<QueryRobotv2AllListResponse>;
|
|
3279
|
+
/**
|
|
3280
|
+
* ### QPS limits
|
|
3281
|
+
* You can call this operation up to 100 times per second per account.
|
|
3282
|
+
*
|
|
3283
|
+
* @param request QueryRobotv2AllListRequest
|
|
3284
|
+
* @return QueryRobotv2AllListResponse
|
|
3285
|
+
*/
|
|
2552
3286
|
queryRobotv2AllList(request: QueryRobotv2AllListRequest): Promise<QueryRobotv2AllListResponse>;
|
|
3287
|
+
queryVideoPlayProgressWithOptions(request: QueryVideoPlayProgressRequest, runtime: $Util.RuntimeOptions): Promise<QueryVideoPlayProgressResponse>;
|
|
3288
|
+
queryVideoPlayProgress(request: QueryVideoPlayProgressRequest): Promise<QueryVideoPlayProgressResponse>;
|
|
3289
|
+
/**
|
|
3290
|
+
* ### QPS limits
|
|
3291
|
+
* You can call this operation up to 100 times per second per account.
|
|
3292
|
+
*
|
|
3293
|
+
* @param request QueryVirtualNumberRequest
|
|
3294
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3295
|
+
* @return QueryVirtualNumberResponse
|
|
3296
|
+
*/
|
|
2553
3297
|
queryVirtualNumberWithOptions(request: QueryVirtualNumberRequest, runtime: $Util.RuntimeOptions): Promise<QueryVirtualNumberResponse>;
|
|
3298
|
+
/**
|
|
3299
|
+
* ### QPS limits
|
|
3300
|
+
* You can call this operation up to 100 times per second per account.
|
|
3301
|
+
*
|
|
3302
|
+
* @param request QueryVirtualNumberRequest
|
|
3303
|
+
* @return QueryVirtualNumberResponse
|
|
3304
|
+
*/
|
|
2554
3305
|
queryVirtualNumber(request: QueryVirtualNumberRequest): Promise<QueryVirtualNumberResponse>;
|
|
3306
|
+
/**
|
|
3307
|
+
* ### QPS limits
|
|
3308
|
+
* You can call this operation up to 200 times per second per account.
|
|
3309
|
+
*
|
|
3310
|
+
* @param request QueryVirtualNumberRelationRequest
|
|
3311
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3312
|
+
* @return QueryVirtualNumberRelationResponse
|
|
3313
|
+
*/
|
|
2555
3314
|
queryVirtualNumberRelationWithOptions(request: QueryVirtualNumberRelationRequest, runtime: $Util.RuntimeOptions): Promise<QueryVirtualNumberRelationResponse>;
|
|
3315
|
+
/**
|
|
3316
|
+
* ### QPS limits
|
|
3317
|
+
* You can call this operation up to 200 times per second per account.
|
|
3318
|
+
*
|
|
3319
|
+
* @param request QueryVirtualNumberRelationRequest
|
|
3320
|
+
* @return QueryVirtualNumberRelationResponse
|
|
3321
|
+
*/
|
|
2556
3322
|
queryVirtualNumberRelation(request: QueryVirtualNumberRelationRequest): Promise<QueryVirtualNumberRelationResponse>;
|
|
2557
3323
|
queryVoiceFileAuditInfoWithOptions(request: QueryVoiceFileAuditInfoRequest, runtime: $Util.RuntimeOptions): Promise<QueryVoiceFileAuditInfoResponse>;
|
|
2558
3324
|
queryVoiceFileAuditInfo(request: QueryVoiceFileAuditInfoRequest): Promise<QueryVoiceFileAuditInfoResponse>;
|
|
2559
|
-
|
|
2560
|
-
|
|
3325
|
+
recoverCallInConfigWithOptions(request: RecoverCallInConfigRequest, runtime: $Util.RuntimeOptions): Promise<RecoverCallInConfigResponse>;
|
|
3326
|
+
recoverCallInConfig(request: RecoverCallInConfigRequest): Promise<RecoverCallInConfigResponse>;
|
|
3327
|
+
resumeVideoFileWithOptions(request: ResumeVideoFileRequest, runtime: $Util.RuntimeOptions): Promise<ResumeVideoFileResponse>;
|
|
3328
|
+
resumeVideoFile(request: ResumeVideoFileRequest): Promise<ResumeVideoFileResponse>;
|
|
3329
|
+
seekVideoFileWithOptions(request: SeekVideoFileRequest, runtime: $Util.RuntimeOptions): Promise<SeekVideoFileResponse>;
|
|
3330
|
+
seekVideoFile(request: SeekVideoFileRequest): Promise<SeekVideoFileResponse>;
|
|
3331
|
+
/**
|
|
3332
|
+
* ### QPS limits
|
|
3333
|
+
* You can call this operation up to 100 times per second per account.
|
|
3334
|
+
*
|
|
3335
|
+
* @param request SendVerificationRequest
|
|
3336
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3337
|
+
* @return SendVerificationResponse
|
|
3338
|
+
*/
|
|
2561
3339
|
sendVerificationWithOptions(request: SendVerificationRequest, runtime: $Util.RuntimeOptions): Promise<SendVerificationResponse>;
|
|
3340
|
+
/**
|
|
3341
|
+
* ### QPS limits
|
|
3342
|
+
* You can call this operation up to 100 times per second per account.
|
|
3343
|
+
*
|
|
3344
|
+
* @param request SendVerificationRequest
|
|
3345
|
+
* @return SendVerificationResponse
|
|
3346
|
+
*/
|
|
2562
3347
|
sendVerification(request: SendVerificationRequest): Promise<SendVerificationResponse>;
|
|
3348
|
+
/**
|
|
3349
|
+
* ### QPS limits
|
|
3350
|
+
* You can call this operation up to 100 times per second per account.
|
|
3351
|
+
*
|
|
3352
|
+
* @param request SetTransferCalleePoolConfigRequest
|
|
3353
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3354
|
+
* @return SetTransferCalleePoolConfigResponse
|
|
3355
|
+
*/
|
|
2563
3356
|
setTransferCalleePoolConfigWithOptions(request: SetTransferCalleePoolConfigRequest, runtime: $Util.RuntimeOptions): Promise<SetTransferCalleePoolConfigResponse>;
|
|
3357
|
+
/**
|
|
3358
|
+
* ### QPS limits
|
|
3359
|
+
* You can call this operation up to 100 times per second per account.
|
|
3360
|
+
*
|
|
3361
|
+
* @param request SetTransferCalleePoolConfigRequest
|
|
3362
|
+
* @return SetTransferCalleePoolConfigResponse
|
|
3363
|
+
*/
|
|
2564
3364
|
setTransferCalleePoolConfig(request: SetTransferCalleePoolConfigRequest): Promise<SetTransferCalleePoolConfigResponse>;
|
|
3365
|
+
/**
|
|
3366
|
+
* * Due to business adjustments, the updates of the voice notification and voice verification code services have been stopped in regions outside the Chinese mainland and the services have been discontinued since March 2022. Only qualified customers can continue using the voice notification and voice verification code services.
|
|
3367
|
+
* * For more information about voice plans or voice service billing, see [Pricing of VMS on China site (aliyun.com)](~~150083~~).
|
|
3368
|
+
* ### QPS limits
|
|
3369
|
+
* You can call this operation up to 1,000 times per second per account.
|
|
3370
|
+
*
|
|
3371
|
+
* @param request SingleCallByTtsRequest
|
|
3372
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3373
|
+
* @return SingleCallByTtsResponse
|
|
3374
|
+
*/
|
|
2565
3375
|
singleCallByTtsWithOptions(request: SingleCallByTtsRequest, runtime: $Util.RuntimeOptions): Promise<SingleCallByTtsResponse>;
|
|
3376
|
+
/**
|
|
3377
|
+
* * Due to business adjustments, the updates of the voice notification and voice verification code services have been stopped in regions outside the Chinese mainland and the services have been discontinued since March 2022. Only qualified customers can continue using the voice notification and voice verification code services.
|
|
3378
|
+
* * For more information about voice plans or voice service billing, see [Pricing of VMS on China site (aliyun.com)](~~150083~~).
|
|
3379
|
+
* ### QPS limits
|
|
3380
|
+
* You can call this operation up to 1,000 times per second per account.
|
|
3381
|
+
*
|
|
3382
|
+
* @param request SingleCallByTtsRequest
|
|
3383
|
+
* @return SingleCallByTtsResponse
|
|
3384
|
+
*/
|
|
2566
3385
|
singleCallByTts(request: SingleCallByTtsRequest): Promise<SingleCallByTtsResponse>;
|
|
3386
|
+
singleCallByVideoWithOptions(request: SingleCallByVideoRequest, runtime: $Util.RuntimeOptions): Promise<SingleCallByVideoResponse>;
|
|
3387
|
+
singleCallByVideo(request: SingleCallByVideoRequest): Promise<SingleCallByVideoResponse>;
|
|
3388
|
+
/**
|
|
3389
|
+
* > Due to business adjustments, the updates of the voice notification and voice verification code services have been stopped in regions outside the Chinese mainland and the services have been discontinued since March 2022. Only qualified customers can continue using the voice notification and voice verification code services.
|
|
3390
|
+
* You can call the [SingleCallByTts](~~393519~~) operation to send voice notifications with variables.
|
|
3391
|
+
* ### QPS limits
|
|
3392
|
+
* You can call this operation up to 1,200 times per second per account.
|
|
3393
|
+
*
|
|
3394
|
+
* @param request SingleCallByVoiceRequest
|
|
3395
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3396
|
+
* @return SingleCallByVoiceResponse
|
|
3397
|
+
*/
|
|
2567
3398
|
singleCallByVoiceWithOptions(request: SingleCallByVoiceRequest, runtime: $Util.RuntimeOptions): Promise<SingleCallByVoiceResponse>;
|
|
3399
|
+
/**
|
|
3400
|
+
* > Due to business adjustments, the updates of the voice notification and voice verification code services have been stopped in regions outside the Chinese mainland and the services have been discontinued since March 2022. Only qualified customers can continue using the voice notification and voice verification code services.
|
|
3401
|
+
* You can call the [SingleCallByTts](~~393519~~) operation to send voice notifications with variables.
|
|
3402
|
+
* ### QPS limits
|
|
3403
|
+
* You can call this operation up to 1,200 times per second per account.
|
|
3404
|
+
*
|
|
3405
|
+
* @param request SingleCallByVoiceRequest
|
|
3406
|
+
* @return SingleCallByVoiceResponse
|
|
3407
|
+
*/
|
|
2568
3408
|
singleCallByVoice(request: SingleCallByVoiceRequest): Promise<SingleCallByVoiceResponse>;
|
|
3409
|
+
skipVideoFileWithOptions(request: SkipVideoFileRequest, runtime: $Util.RuntimeOptions): Promise<SkipVideoFileResponse>;
|
|
3410
|
+
skipVideoFile(request: SkipVideoFileRequest): Promise<SkipVideoFileResponse>;
|
|
3411
|
+
/**
|
|
3412
|
+
* * The SmartCall operation must be used together with the [intelligent outbound HTTP operation](~~112703~~). After the call initiated by the Voice Messaging Service (VMS) platform is connected, the VMS platform sends the text converted from speech back to the business side, and the business side then returns the follow-up action to the VMS platform.
|
|
3413
|
+
* * The SmartCall operation does not support the following characters: `@ = : "" $ { } ^ * ¥`.
|
|
3414
|
+
* ### QPS limits
|
|
3415
|
+
* You can call this operation up to 1,000 times per second per account.
|
|
3416
|
+
*
|
|
3417
|
+
* @param request SmartCallRequest
|
|
3418
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3419
|
+
* @return SmartCallResponse
|
|
3420
|
+
*/
|
|
2569
3421
|
smartCallWithOptions(request: SmartCallRequest, runtime: $Util.RuntimeOptions): Promise<SmartCallResponse>;
|
|
3422
|
+
/**
|
|
3423
|
+
* * The SmartCall operation must be used together with the [intelligent outbound HTTP operation](~~112703~~). After the call initiated by the Voice Messaging Service (VMS) platform is connected, the VMS platform sends the text converted from speech back to the business side, and the business side then returns the follow-up action to the VMS platform.
|
|
3424
|
+
* * The SmartCall operation does not support the following characters: `@ = : "" $ { } ^ * ¥`.
|
|
3425
|
+
* ### QPS limits
|
|
3426
|
+
* You can call this operation up to 1,000 times per second per account.
|
|
3427
|
+
*
|
|
3428
|
+
* @param request SmartCallRequest
|
|
3429
|
+
* @return SmartCallResponse
|
|
3430
|
+
*/
|
|
2570
3431
|
smartCall(request: SmartCallRequest): Promise<SmartCallResponse>;
|
|
3432
|
+
/**
|
|
3433
|
+
* You can call this operation to initiate a specified action on the called number of an outbound robocall when the call is transferred to an agent of the call center.
|
|
3434
|
+
* > You can only initiate the action of bridging a called number and an agent of the call center.
|
|
3435
|
+
* ### QPS limits
|
|
3436
|
+
* You can call this operation up to 100 times per second per account.
|
|
3437
|
+
*
|
|
3438
|
+
* @param request SmartCallOperateRequest
|
|
3439
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3440
|
+
* @return SmartCallOperateResponse
|
|
3441
|
+
*/
|
|
2571
3442
|
smartCallOperateWithOptions(request: SmartCallOperateRequest, runtime: $Util.RuntimeOptions): Promise<SmartCallOperateResponse>;
|
|
3443
|
+
/**
|
|
3444
|
+
* You can call this operation to initiate a specified action on the called number of an outbound robocall when the call is transferred to an agent of the call center.
|
|
3445
|
+
* > You can only initiate the action of bridging a called number and an agent of the call center.
|
|
3446
|
+
* ### QPS limits
|
|
3447
|
+
* You can call this operation up to 100 times per second per account.
|
|
3448
|
+
*
|
|
3449
|
+
* @param request SmartCallOperateRequest
|
|
3450
|
+
* @return SmartCallOperateResponse
|
|
3451
|
+
*/
|
|
2572
3452
|
smartCallOperate(request: SmartCallOperateRequest): Promise<SmartCallOperateResponse>;
|
|
3453
|
+
/**
|
|
3454
|
+
* ### QPS limits
|
|
3455
|
+
* You can call this operation up to 100 times per second per account.
|
|
3456
|
+
*
|
|
3457
|
+
* @param request StartRobotTaskRequest
|
|
3458
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3459
|
+
* @return StartRobotTaskResponse
|
|
3460
|
+
*/
|
|
2573
3461
|
startRobotTaskWithOptions(request: StartRobotTaskRequest, runtime: $Util.RuntimeOptions): Promise<StartRobotTaskResponse>;
|
|
3462
|
+
/**
|
|
3463
|
+
* ### QPS limits
|
|
3464
|
+
* You can call this operation up to 100 times per second per account.
|
|
3465
|
+
*
|
|
3466
|
+
* @param request StartRobotTaskRequest
|
|
3467
|
+
* @return StartRobotTaskResponse
|
|
3468
|
+
*/
|
|
2574
3469
|
startRobotTask(request: StartRobotTaskRequest): Promise<StartRobotTaskResponse>;
|
|
3470
|
+
stopCallInConfigWithOptions(request: StopCallInConfigRequest, runtime: $Util.RuntimeOptions): Promise<StopCallInConfigResponse>;
|
|
3471
|
+
stopCallInConfig(request: StopCallInConfigRequest): Promise<StopCallInConfigResponse>;
|
|
3472
|
+
/**
|
|
3473
|
+
* After you stop a robocall task, you can call the [StartRobotTask](~~StartRobotTask~~) operation to start it again.
|
|
3474
|
+
* ### QPS limits
|
|
3475
|
+
* You can call this operation up to 100 times per second per account.
|
|
3476
|
+
*
|
|
3477
|
+
* @param request StopRobotTaskRequest
|
|
3478
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3479
|
+
* @return StopRobotTaskResponse
|
|
3480
|
+
*/
|
|
2575
3481
|
stopRobotTaskWithOptions(request: StopRobotTaskRequest, runtime: $Util.RuntimeOptions): Promise<StopRobotTaskResponse>;
|
|
3482
|
+
/**
|
|
3483
|
+
* After you stop a robocall task, you can call the [StartRobotTask](~~StartRobotTask~~) operation to start it again.
|
|
3484
|
+
* ### QPS limits
|
|
3485
|
+
* You can call this operation up to 100 times per second per account.
|
|
3486
|
+
*
|
|
3487
|
+
* @param request StopRobotTaskRequest
|
|
3488
|
+
* @return StopRobotTaskResponse
|
|
3489
|
+
*/
|
|
2576
3490
|
stopRobotTask(request: StopRobotTaskRequest): Promise<StopRobotTaskResponse>;
|
|
3491
|
+
/**
|
|
3492
|
+
* ### QPS limits
|
|
3493
|
+
* You can call this operation up to 100 times per second per account.
|
|
3494
|
+
*
|
|
3495
|
+
* @param request SubmitHotlineTransferRegisterRequest
|
|
3496
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3497
|
+
* @return SubmitHotlineTransferRegisterResponse
|
|
3498
|
+
*/
|
|
2577
3499
|
submitHotlineTransferRegisterWithOptions(request: SubmitHotlineTransferRegisterRequest, runtime: $Util.RuntimeOptions): Promise<SubmitHotlineTransferRegisterResponse>;
|
|
3500
|
+
/**
|
|
3501
|
+
* ### QPS limits
|
|
3502
|
+
* You can call this operation up to 100 times per second per account.
|
|
3503
|
+
*
|
|
3504
|
+
* @param request SubmitHotlineTransferRegisterRequest
|
|
3505
|
+
* @return SubmitHotlineTransferRegisterResponse
|
|
3506
|
+
*/
|
|
2578
3507
|
submitHotlineTransferRegister(request: SubmitHotlineTransferRegisterRequest): Promise<SubmitHotlineTransferRegisterResponse>;
|
|
3508
|
+
upgradeVideoFileWithOptions(request: UpgradeVideoFileRequest, runtime: $Util.RuntimeOptions): Promise<UpgradeVideoFileResponse>;
|
|
3509
|
+
upgradeVideoFile(request: UpgradeVideoFileRequest): Promise<UpgradeVideoFileResponse>;
|
|
3510
|
+
/**
|
|
3511
|
+
* ### QPS limits
|
|
3512
|
+
* You can call this operation up to 100 times per second per account.
|
|
3513
|
+
*
|
|
3514
|
+
* @param request UploadRobotTaskCalledFileRequest
|
|
3515
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
3516
|
+
* @return UploadRobotTaskCalledFileResponse
|
|
3517
|
+
*/
|
|
2579
3518
|
uploadRobotTaskCalledFileWithOptions(request: UploadRobotTaskCalledFileRequest, runtime: $Util.RuntimeOptions): Promise<UploadRobotTaskCalledFileResponse>;
|
|
3519
|
+
/**
|
|
3520
|
+
* ### QPS limits
|
|
3521
|
+
* You can call this operation up to 100 times per second per account.
|
|
3522
|
+
*
|
|
3523
|
+
* @param request UploadRobotTaskCalledFileRequest
|
|
3524
|
+
* @return UploadRobotTaskCalledFileResponse
|
|
3525
|
+
*/
|
|
2580
3526
|
uploadRobotTaskCalledFile(request: UploadRobotTaskCalledFileRequest): Promise<UploadRobotTaskCalledFileResponse>;
|
|
2581
3527
|
}
|