tencentcloud-sdk-python-intl-en 3.0.1227__py2.py3-none-any.whl → 3.0.1229__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/ccc_client.py +121 -2
- tencentcloud/ccc/v20200210/errorcodes.py +12 -3
- tencentcloud/ccc/v20200210/models.py +1155 -163
- tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py +1 -1
- tencentcloud/iotcloud/v20210408/models.py +20 -12
- tencentcloud/live/v20180801/live_client.py +23 -0
- tencentcloud/live/v20180801/models.py +109 -0
- tencentcloud/mdl/v20200326/models.py +417 -2
- tencentcloud/teo/v20220901/models.py +68 -68
- tencentcloud/vod/v20240718/__init__.py +0 -0
- tencentcloud/vod/v20240718/errorcodes.py +48 -0
- tencentcloud/vod/v20240718/models.py +2101 -0
- tencentcloud/vod/v20240718/vod_client.py +194 -0
- {tencentcloud_sdk_python_intl_en-3.0.1227.dist-info → tencentcloud_sdk_python_intl_en-3.0.1229.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1227.dist-info → tencentcloud_sdk_python_intl_en-3.0.1229.dist-info}/RECORD +18 -14
- {tencentcloud_sdk_python_intl_en-3.0.1227.dist-info → tencentcloud_sdk_python_intl_en-3.0.1229.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1227.dist-info → tencentcloud_sdk_python_intl_en-3.0.1229.dist-info}/top_level.txt +0 -0
|
@@ -294,6 +294,257 @@ class AICallExtractResultInfo(AbstractModel):
|
|
|
294
294
|
|
|
295
295
|
|
|
296
296
|
|
|
297
|
+
class AILatencyDetail(AbstractModel):
|
|
298
|
+
"""AI latency details.
|
|
299
|
+
|
|
300
|
+
"""
|
|
301
|
+
|
|
302
|
+
def __init__(self):
|
|
303
|
+
r"""
|
|
304
|
+
:param _RoundId: Dialog ID.
|
|
305
|
+
:type RoundId: str
|
|
306
|
+
:param _ASRLatency: Specifies the asr latency in milliseconds.
|
|
307
|
+
:type ASRLatency: int
|
|
308
|
+
:param _TTSLatency: Specifies the tts delay in milliseconds.
|
|
309
|
+
:type TTSLatency: int
|
|
310
|
+
:param _LLMLatency: llm latency (ms).
|
|
311
|
+
:type LLMLatency: int
|
|
312
|
+
:param _ETELatency: End-To-End delay (ms).
|
|
313
|
+
:type ETELatency: int
|
|
314
|
+
"""
|
|
315
|
+
self._RoundId = None
|
|
316
|
+
self._ASRLatency = None
|
|
317
|
+
self._TTSLatency = None
|
|
318
|
+
self._LLMLatency = None
|
|
319
|
+
self._ETELatency = None
|
|
320
|
+
|
|
321
|
+
@property
|
|
322
|
+
def RoundId(self):
|
|
323
|
+
"""Dialog ID.
|
|
324
|
+
:rtype: str
|
|
325
|
+
"""
|
|
326
|
+
return self._RoundId
|
|
327
|
+
|
|
328
|
+
@RoundId.setter
|
|
329
|
+
def RoundId(self, RoundId):
|
|
330
|
+
self._RoundId = RoundId
|
|
331
|
+
|
|
332
|
+
@property
|
|
333
|
+
def ASRLatency(self):
|
|
334
|
+
"""Specifies the asr latency in milliseconds.
|
|
335
|
+
:rtype: int
|
|
336
|
+
"""
|
|
337
|
+
return self._ASRLatency
|
|
338
|
+
|
|
339
|
+
@ASRLatency.setter
|
|
340
|
+
def ASRLatency(self, ASRLatency):
|
|
341
|
+
self._ASRLatency = ASRLatency
|
|
342
|
+
|
|
343
|
+
@property
|
|
344
|
+
def TTSLatency(self):
|
|
345
|
+
"""Specifies the tts delay in milliseconds.
|
|
346
|
+
:rtype: int
|
|
347
|
+
"""
|
|
348
|
+
return self._TTSLatency
|
|
349
|
+
|
|
350
|
+
@TTSLatency.setter
|
|
351
|
+
def TTSLatency(self, TTSLatency):
|
|
352
|
+
self._TTSLatency = TTSLatency
|
|
353
|
+
|
|
354
|
+
@property
|
|
355
|
+
def LLMLatency(self):
|
|
356
|
+
"""llm latency (ms).
|
|
357
|
+
:rtype: int
|
|
358
|
+
"""
|
|
359
|
+
return self._LLMLatency
|
|
360
|
+
|
|
361
|
+
@LLMLatency.setter
|
|
362
|
+
def LLMLatency(self, LLMLatency):
|
|
363
|
+
self._LLMLatency = LLMLatency
|
|
364
|
+
|
|
365
|
+
@property
|
|
366
|
+
def ETELatency(self):
|
|
367
|
+
"""End-To-End delay (ms).
|
|
368
|
+
:rtype: int
|
|
369
|
+
"""
|
|
370
|
+
return self._ETELatency
|
|
371
|
+
|
|
372
|
+
@ETELatency.setter
|
|
373
|
+
def ETELatency(self, ETELatency):
|
|
374
|
+
self._ETELatency = ETELatency
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
def _deserialize(self, params):
|
|
378
|
+
self._RoundId = params.get("RoundId")
|
|
379
|
+
self._ASRLatency = params.get("ASRLatency")
|
|
380
|
+
self._TTSLatency = params.get("TTSLatency")
|
|
381
|
+
self._LLMLatency = params.get("LLMLatency")
|
|
382
|
+
self._ETELatency = params.get("ETELatency")
|
|
383
|
+
memeber_set = set(params.keys())
|
|
384
|
+
for name, value in vars(self).items():
|
|
385
|
+
property_name = name[1:]
|
|
386
|
+
if property_name in memeber_set:
|
|
387
|
+
memeber_set.remove(property_name)
|
|
388
|
+
if len(memeber_set) > 0:
|
|
389
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
class AILatencyStatistics(AbstractModel):
|
|
394
|
+
"""AI latency statistics.
|
|
395
|
+
|
|
396
|
+
"""
|
|
397
|
+
|
|
398
|
+
def __init__(self):
|
|
399
|
+
r"""
|
|
400
|
+
:param _ASRLatency: Specifies the asr latency statistics.
|
|
401
|
+
:type ASRLatency: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
|
402
|
+
:param _TTSLatency: Specifies the statistics of tts delay.
|
|
403
|
+
:type TTSLatency: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
|
404
|
+
:param _LLMLatency: llm latency statistics.
|
|
405
|
+
:type LLMLatency: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
|
406
|
+
:param _ETELatency: Specifies the end-to-end latency statistics.
|
|
407
|
+
:type ETELatency: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
|
408
|
+
"""
|
|
409
|
+
self._ASRLatency = None
|
|
410
|
+
self._TTSLatency = None
|
|
411
|
+
self._LLMLatency = None
|
|
412
|
+
self._ETELatency = None
|
|
413
|
+
|
|
414
|
+
@property
|
|
415
|
+
def ASRLatency(self):
|
|
416
|
+
"""Specifies the asr latency statistics.
|
|
417
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
|
418
|
+
"""
|
|
419
|
+
return self._ASRLatency
|
|
420
|
+
|
|
421
|
+
@ASRLatency.setter
|
|
422
|
+
def ASRLatency(self, ASRLatency):
|
|
423
|
+
self._ASRLatency = ASRLatency
|
|
424
|
+
|
|
425
|
+
@property
|
|
426
|
+
def TTSLatency(self):
|
|
427
|
+
"""Specifies the statistics of tts delay.
|
|
428
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
|
429
|
+
"""
|
|
430
|
+
return self._TTSLatency
|
|
431
|
+
|
|
432
|
+
@TTSLatency.setter
|
|
433
|
+
def TTSLatency(self, TTSLatency):
|
|
434
|
+
self._TTSLatency = TTSLatency
|
|
435
|
+
|
|
436
|
+
@property
|
|
437
|
+
def LLMLatency(self):
|
|
438
|
+
"""llm latency statistics.
|
|
439
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
|
440
|
+
"""
|
|
441
|
+
return self._LLMLatency
|
|
442
|
+
|
|
443
|
+
@LLMLatency.setter
|
|
444
|
+
def LLMLatency(self, LLMLatency):
|
|
445
|
+
self._LLMLatency = LLMLatency
|
|
446
|
+
|
|
447
|
+
@property
|
|
448
|
+
def ETELatency(self):
|
|
449
|
+
"""Specifies the end-to-end latency statistics.
|
|
450
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatisticsInfo`
|
|
451
|
+
"""
|
|
452
|
+
return self._ETELatency
|
|
453
|
+
|
|
454
|
+
@ETELatency.setter
|
|
455
|
+
def ETELatency(self, ETELatency):
|
|
456
|
+
self._ETELatency = ETELatency
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
def _deserialize(self, params):
|
|
460
|
+
if params.get("ASRLatency") is not None:
|
|
461
|
+
self._ASRLatency = AILatencyStatisticsInfo()
|
|
462
|
+
self._ASRLatency._deserialize(params.get("ASRLatency"))
|
|
463
|
+
if params.get("TTSLatency") is not None:
|
|
464
|
+
self._TTSLatency = AILatencyStatisticsInfo()
|
|
465
|
+
self._TTSLatency._deserialize(params.get("TTSLatency"))
|
|
466
|
+
if params.get("LLMLatency") is not None:
|
|
467
|
+
self._LLMLatency = AILatencyStatisticsInfo()
|
|
468
|
+
self._LLMLatency._deserialize(params.get("LLMLatency"))
|
|
469
|
+
if params.get("ETELatency") is not None:
|
|
470
|
+
self._ETELatency = AILatencyStatisticsInfo()
|
|
471
|
+
self._ETELatency._deserialize(params.get("ETELatency"))
|
|
472
|
+
memeber_set = set(params.keys())
|
|
473
|
+
for name, value in vars(self).items():
|
|
474
|
+
property_name = name[1:]
|
|
475
|
+
if property_name in memeber_set:
|
|
476
|
+
memeber_set.remove(property_name)
|
|
477
|
+
if len(memeber_set) > 0:
|
|
478
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
class AILatencyStatisticsInfo(AbstractModel):
|
|
483
|
+
"""AI latency statistics.
|
|
484
|
+
|
|
485
|
+
"""
|
|
486
|
+
|
|
487
|
+
def __init__(self):
|
|
488
|
+
r"""
|
|
489
|
+
:param _MinLatency: Specifies the minimum value.
|
|
490
|
+
:type MinLatency: int
|
|
491
|
+
:param _MiddleLatency: Specifies the median.
|
|
492
|
+
:type MiddleLatency: int
|
|
493
|
+
:param _P90Latency: p90
|
|
494
|
+
:type P90Latency: int
|
|
495
|
+
"""
|
|
496
|
+
self._MinLatency = None
|
|
497
|
+
self._MiddleLatency = None
|
|
498
|
+
self._P90Latency = None
|
|
499
|
+
|
|
500
|
+
@property
|
|
501
|
+
def MinLatency(self):
|
|
502
|
+
"""Specifies the minimum value.
|
|
503
|
+
:rtype: int
|
|
504
|
+
"""
|
|
505
|
+
return self._MinLatency
|
|
506
|
+
|
|
507
|
+
@MinLatency.setter
|
|
508
|
+
def MinLatency(self, MinLatency):
|
|
509
|
+
self._MinLatency = MinLatency
|
|
510
|
+
|
|
511
|
+
@property
|
|
512
|
+
def MiddleLatency(self):
|
|
513
|
+
"""Specifies the median.
|
|
514
|
+
:rtype: int
|
|
515
|
+
"""
|
|
516
|
+
return self._MiddleLatency
|
|
517
|
+
|
|
518
|
+
@MiddleLatency.setter
|
|
519
|
+
def MiddleLatency(self, MiddleLatency):
|
|
520
|
+
self._MiddleLatency = MiddleLatency
|
|
521
|
+
|
|
522
|
+
@property
|
|
523
|
+
def P90Latency(self):
|
|
524
|
+
"""p90
|
|
525
|
+
:rtype: int
|
|
526
|
+
"""
|
|
527
|
+
return self._P90Latency
|
|
528
|
+
|
|
529
|
+
@P90Latency.setter
|
|
530
|
+
def P90Latency(self, P90Latency):
|
|
531
|
+
self._P90Latency = P90Latency
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
def _deserialize(self, params):
|
|
535
|
+
self._MinLatency = params.get("MinLatency")
|
|
536
|
+
self._MiddleLatency = params.get("MiddleLatency")
|
|
537
|
+
self._P90Latency = params.get("P90Latency")
|
|
538
|
+
memeber_set = set(params.keys())
|
|
539
|
+
for name, value in vars(self).items():
|
|
540
|
+
property_name = name[1:]
|
|
541
|
+
if property_name in memeber_set:
|
|
542
|
+
memeber_set.remove(property_name)
|
|
543
|
+
if len(memeber_set) > 0:
|
|
544
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
|
|
297
548
|
class AITransferItem(AbstractModel):
|
|
298
549
|
"""AI to human configuration item.
|
|
299
550
|
|
|
@@ -1547,12 +1798,19 @@ class CreateAIAgentCallRequest(AbstractModel):
|
|
|
1547
1798
|
:type Callers: list of str
|
|
1548
1799
|
:param _PromptVariables: Prompt variable.
|
|
1549
1800
|
:type PromptVariables: list of Variable
|
|
1801
|
+
:param _Variables: <P>Prompt variable</p> <p>welcome message variable</p> <p>welcome message delay playback (in seconds): welcome-message-delay</p> <p>dify variable</p>.
|
|
1802
|
+
|
|
1803
|
+
dify-inputs-xxx specifies the inputs variable for dify.
|
|
1804
|
+
2. the dify-inputs-user specifies the user value for dify.
|
|
1805
|
+
3. dify-inputs-conversation_id is the conversation_id value of dify.
|
|
1806
|
+
:type Variables: list of Variable
|
|
1550
1807
|
"""
|
|
1551
1808
|
self._SdkAppId = None
|
|
1552
1809
|
self._AIAgentId = None
|
|
1553
1810
|
self._Callee = None
|
|
1554
1811
|
self._Callers = None
|
|
1555
1812
|
self._PromptVariables = None
|
|
1813
|
+
self._Variables = None
|
|
1556
1814
|
|
|
1557
1815
|
@property
|
|
1558
1816
|
def SdkAppId(self):
|
|
@@ -1613,6 +1871,21 @@ class CreateAIAgentCallRequest(AbstractModel):
|
|
|
1613
1871
|
|
|
1614
1872
|
self._PromptVariables = PromptVariables
|
|
1615
1873
|
|
|
1874
|
+
@property
|
|
1875
|
+
def Variables(self):
|
|
1876
|
+
"""<P>Prompt variable</p> <p>welcome message variable</p> <p>welcome message delay playback (in seconds): welcome-message-delay</p> <p>dify variable</p>.
|
|
1877
|
+
|
|
1878
|
+
dify-inputs-xxx specifies the inputs variable for dify.
|
|
1879
|
+
2. the dify-inputs-user specifies the user value for dify.
|
|
1880
|
+
3. dify-inputs-conversation_id is the conversation_id value of dify.
|
|
1881
|
+
:rtype: list of Variable
|
|
1882
|
+
"""
|
|
1883
|
+
return self._Variables
|
|
1884
|
+
|
|
1885
|
+
@Variables.setter
|
|
1886
|
+
def Variables(self, Variables):
|
|
1887
|
+
self._Variables = Variables
|
|
1888
|
+
|
|
1616
1889
|
|
|
1617
1890
|
def _deserialize(self, params):
|
|
1618
1891
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -1625,6 +1898,12 @@ class CreateAIAgentCallRequest(AbstractModel):
|
|
|
1625
1898
|
obj = Variable()
|
|
1626
1899
|
obj._deserialize(item)
|
|
1627
1900
|
self._PromptVariables.append(obj)
|
|
1901
|
+
if params.get("Variables") is not None:
|
|
1902
|
+
self._Variables = []
|
|
1903
|
+
for item in params.get("Variables"):
|
|
1904
|
+
obj = Variable()
|
|
1905
|
+
obj._deserialize(item)
|
|
1906
|
+
self._Variables.append(obj)
|
|
1628
1907
|
memeber_set = set(params.keys())
|
|
1629
1908
|
for name, value in vars(self).items():
|
|
1630
1909
|
property_name = name[1:]
|
|
@@ -1689,11 +1968,12 @@ class CreateAICallRequest(AbstractModel):
|
|
|
1689
1968
|
:type SdkAppId: int
|
|
1690
1969
|
:param _Callee: Called number.
|
|
1691
1970
|
:type Callee: str
|
|
1692
|
-
:param _LLMType: Model
|
|
1971
|
+
:param _LLMType: Model API protocol type. currently compatible with four protocol types:.
|
|
1693
1972
|
|
|
1694
|
-
-
|
|
1695
|
-
-
|
|
1696
|
-
- Minimax protocol
|
|
1973
|
+
-OpenAI protocol (including GPT, hunyuan, DeepSeek, etc.): "OpenAI".
|
|
1974
|
+
-Azure protocol: "azure".
|
|
1975
|
+
-Specifies the "Minimax" protocol.
|
|
1976
|
+
-Dify protocol: "dify".
|
|
1697
1977
|
:type LLMType: str
|
|
1698
1978
|
:param _APIKey: Model API key, for authentication information, please refer to the respective model's official website
|
|
1699
1979
|
|
|
@@ -1905,6 +2185,14 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1905
2185
|
:type VadSilenceTime: int
|
|
1906
2186
|
:param _ExtractConfig: Call content extraction configuration.
|
|
1907
2187
|
:type ExtractConfig: list of AICallExtractConfigElement
|
|
2188
|
+
:param _Temperature: Model temperature control.
|
|
2189
|
+
:type Temperature: float
|
|
2190
|
+
:param _Variables: Common variable: <p>prompt content variable</p> <p>welcome message variable</p> <p>welcome message delay playback (in seconds): welcome-message-delay</p> <p>dify variable</p>.
|
|
2191
|
+
|
|
2192
|
+
dify-inputs-xxx specifies the inputs variable for dify.
|
|
2193
|
+
2. the dify-inputs-user specifies the user value for dify.
|
|
2194
|
+
3. dify-inputs-conversation_id is the conversation_id value of dify.
|
|
2195
|
+
:type Variables: list of Variable
|
|
1908
2196
|
"""
|
|
1909
2197
|
self._SdkAppId = None
|
|
1910
2198
|
self._Callee = None
|
|
@@ -1933,6 +2221,8 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1933
2221
|
self._PromptVariables = None
|
|
1934
2222
|
self._VadSilenceTime = None
|
|
1935
2223
|
self._ExtractConfig = None
|
|
2224
|
+
self._Temperature = None
|
|
2225
|
+
self._Variables = None
|
|
1936
2226
|
|
|
1937
2227
|
@property
|
|
1938
2228
|
def SdkAppId(self):
|
|
@@ -1958,11 +2248,12 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
1958
2248
|
|
|
1959
2249
|
@property
|
|
1960
2250
|
def LLMType(self):
|
|
1961
|
-
"""Model
|
|
2251
|
+
"""Model API protocol type. currently compatible with four protocol types:.
|
|
1962
2252
|
|
|
1963
|
-
-
|
|
1964
|
-
-
|
|
1965
|
-
- Minimax protocol
|
|
2253
|
+
-OpenAI protocol (including GPT, hunyuan, DeepSeek, etc.): "OpenAI".
|
|
2254
|
+
-Azure protocol: "azure".
|
|
2255
|
+
-Specifies the "Minimax" protocol.
|
|
2256
|
+
-Dify protocol: "dify".
|
|
1966
2257
|
:rtype: str
|
|
1967
2258
|
"""
|
|
1968
2259
|
return self._LLMType
|
|
@@ -2401,6 +2692,32 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
2401
2692
|
def ExtractConfig(self, ExtractConfig):
|
|
2402
2693
|
self._ExtractConfig = ExtractConfig
|
|
2403
2694
|
|
|
2695
|
+
@property
|
|
2696
|
+
def Temperature(self):
|
|
2697
|
+
"""Model temperature control.
|
|
2698
|
+
:rtype: float
|
|
2699
|
+
"""
|
|
2700
|
+
return self._Temperature
|
|
2701
|
+
|
|
2702
|
+
@Temperature.setter
|
|
2703
|
+
def Temperature(self, Temperature):
|
|
2704
|
+
self._Temperature = Temperature
|
|
2705
|
+
|
|
2706
|
+
@property
|
|
2707
|
+
def Variables(self):
|
|
2708
|
+
"""Common variable: <p>prompt content variable</p> <p>welcome message variable</p> <p>welcome message delay playback (in seconds): welcome-message-delay</p> <p>dify variable</p>.
|
|
2709
|
+
|
|
2710
|
+
dify-inputs-xxx specifies the inputs variable for dify.
|
|
2711
|
+
2. the dify-inputs-user specifies the user value for dify.
|
|
2712
|
+
3. dify-inputs-conversation_id is the conversation_id value of dify.
|
|
2713
|
+
:rtype: list of Variable
|
|
2714
|
+
"""
|
|
2715
|
+
return self._Variables
|
|
2716
|
+
|
|
2717
|
+
@Variables.setter
|
|
2718
|
+
def Variables(self, Variables):
|
|
2719
|
+
self._Variables = Variables
|
|
2720
|
+
|
|
2404
2721
|
|
|
2405
2722
|
def _deserialize(self, params):
|
|
2406
2723
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -2445,6 +2762,13 @@ Please refer to the specific protocol standards in the <a href="https://doc.weix
|
|
|
2445
2762
|
obj = AICallExtractConfigElement()
|
|
2446
2763
|
obj._deserialize(item)
|
|
2447
2764
|
self._ExtractConfig.append(obj)
|
|
2765
|
+
self._Temperature = params.get("Temperature")
|
|
2766
|
+
if params.get("Variables") is not None:
|
|
2767
|
+
self._Variables = []
|
|
2768
|
+
for item in params.get("Variables"):
|
|
2769
|
+
obj = Variable()
|
|
2770
|
+
obj._deserialize(item)
|
|
2771
|
+
self._Variables.append(obj)
|
|
2448
2772
|
memeber_set = set(params.keys())
|
|
2449
2773
|
for name, value in vars(self).items():
|
|
2450
2774
|
property_name = name[1:]
|
|
@@ -2821,7 +3145,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
|
|
|
2821
3145
|
:type Callees: list of str
|
|
2822
3146
|
:param _Callers: List of calling numbers.
|
|
2823
3147
|
:type Callers: list of str
|
|
2824
|
-
:param _IvrId: IVR used for calling.
|
|
3148
|
+
:param _IvrId: IVR Id used for calling. if not filled, AIAgentId needs to be filled.
|
|
2825
3149
|
:type IvrId: int
|
|
2826
3150
|
:param _Name: Task name.
|
|
2827
3151
|
:type Name: str
|
|
@@ -2837,6 +3161,12 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
|
|
|
2837
3161
|
:type UUI: str
|
|
2838
3162
|
:param _CalleeAttributes: Property of the called.
|
|
2839
3163
|
:type CalleeAttributes: list of CalleeAttribute
|
|
3164
|
+
:param _TimeZone: IANA time zone name. see https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones.
|
|
3165
|
+
:type TimeZone: str
|
|
3166
|
+
:param _AvailableTime: Available time period.
|
|
3167
|
+
:type AvailableTime: list of TimeRange
|
|
3168
|
+
:param _AIAgentId: Intelligent agent ID. if not filled, IvrId needs to be filled.
|
|
3169
|
+
:type AIAgentId: int
|
|
2840
3170
|
"""
|
|
2841
3171
|
self._SdkAppId = None
|
|
2842
3172
|
self._NotBefore = None
|
|
@@ -2850,6 +3180,9 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
|
|
|
2850
3180
|
self._Variables = None
|
|
2851
3181
|
self._UUI = None
|
|
2852
3182
|
self._CalleeAttributes = None
|
|
3183
|
+
self._TimeZone = None
|
|
3184
|
+
self._AvailableTime = None
|
|
3185
|
+
self._AIAgentId = None
|
|
2853
3186
|
|
|
2854
3187
|
@property
|
|
2855
3188
|
def SdkAppId(self):
|
|
@@ -2897,7 +3230,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
|
|
|
2897
3230
|
|
|
2898
3231
|
@property
|
|
2899
3232
|
def IvrId(self):
|
|
2900
|
-
"""IVR used for calling.
|
|
3233
|
+
"""IVR Id used for calling. if not filled, AIAgentId needs to be filled.
|
|
2901
3234
|
:rtype: int
|
|
2902
3235
|
"""
|
|
2903
3236
|
return self._IvrId
|
|
@@ -2983,6 +3316,39 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
|
|
|
2983
3316
|
def CalleeAttributes(self, CalleeAttributes):
|
|
2984
3317
|
self._CalleeAttributes = CalleeAttributes
|
|
2985
3318
|
|
|
3319
|
+
@property
|
|
3320
|
+
def TimeZone(self):
|
|
3321
|
+
"""IANA time zone name. see https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones.
|
|
3322
|
+
:rtype: str
|
|
3323
|
+
"""
|
|
3324
|
+
return self._TimeZone
|
|
3325
|
+
|
|
3326
|
+
@TimeZone.setter
|
|
3327
|
+
def TimeZone(self, TimeZone):
|
|
3328
|
+
self._TimeZone = TimeZone
|
|
3329
|
+
|
|
3330
|
+
@property
|
|
3331
|
+
def AvailableTime(self):
|
|
3332
|
+
"""Available time period.
|
|
3333
|
+
:rtype: list of TimeRange
|
|
3334
|
+
"""
|
|
3335
|
+
return self._AvailableTime
|
|
3336
|
+
|
|
3337
|
+
@AvailableTime.setter
|
|
3338
|
+
def AvailableTime(self, AvailableTime):
|
|
3339
|
+
self._AvailableTime = AvailableTime
|
|
3340
|
+
|
|
3341
|
+
@property
|
|
3342
|
+
def AIAgentId(self):
|
|
3343
|
+
"""Intelligent agent ID. if not filled, IvrId needs to be filled.
|
|
3344
|
+
:rtype: int
|
|
3345
|
+
"""
|
|
3346
|
+
return self._AIAgentId
|
|
3347
|
+
|
|
3348
|
+
@AIAgentId.setter
|
|
3349
|
+
def AIAgentId(self, AIAgentId):
|
|
3350
|
+
self._AIAgentId = AIAgentId
|
|
3351
|
+
|
|
2986
3352
|
|
|
2987
3353
|
def _deserialize(self, params):
|
|
2988
3354
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -3007,6 +3373,14 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
|
|
|
3007
3373
|
obj = CalleeAttribute()
|
|
3008
3374
|
obj._deserialize(item)
|
|
3009
3375
|
self._CalleeAttributes.append(obj)
|
|
3376
|
+
self._TimeZone = params.get("TimeZone")
|
|
3377
|
+
if params.get("AvailableTime") is not None:
|
|
3378
|
+
self._AvailableTime = []
|
|
3379
|
+
for item in params.get("AvailableTime"):
|
|
3380
|
+
obj = TimeRange()
|
|
3381
|
+
obj._deserialize(item)
|
|
3382
|
+
self._AvailableTime.append(obj)
|
|
3383
|
+
self._AIAgentId = params.get("AIAgentId")
|
|
3010
3384
|
memeber_set = set(params.keys())
|
|
3011
3385
|
for name, value in vars(self).items():
|
|
3012
3386
|
property_name = name[1:]
|
|
@@ -3195,7 +3569,7 @@ class CreateCallOutSessionRequest(AbstractModel):
|
|
|
3195
3569
|
r"""
|
|
3196
3570
|
:param _SdkAppId: Application id.
|
|
3197
3571
|
:type SdkAppId: int
|
|
3198
|
-
:param _UserId: Customer service user
|
|
3572
|
+
:param _UserId: Customer service user ID, generally the customer service email. ensure that the mobile number has been bound. https://intl.cloud.tencent.com/document/product/679/76067?from_cn_redirect=1#.E6.AD.A5.E9.AA.A42.EF.BC.9A.E5.AE.8C.E5.96.84.E8.B4.A6.E5.8F.B7.E4.BF.A1.E6.81.AF.
|
|
3199
3573
|
:type UserId: str
|
|
3200
3574
|
:param _Callee: Called number must be preceded by 0086.
|
|
3201
3575
|
:type Callee: str
|
|
@@ -3203,7 +3577,7 @@ class CreateCallOutSessionRequest(AbstractModel):
|
|
|
3203
3577
|
:type Caller: str
|
|
3204
3578
|
:param _Callers: Designated caller number list. if the prior number fails, it will automatically switch to the next number that must be preceded by 0086.
|
|
3205
3579
|
:type Callers: list of str
|
|
3206
|
-
:param _IsForceUseMobile: Whether to force the use of
|
|
3580
|
+
:param _IsForceUseMobile: Whether to force the use of mobile outbound call. currently only supports true. if set to true, ensure the allowlist is configured. https://intl.cloud.tencent.com/document/product/679/76744?from_cn_redirect=1#.E6.93.8D.E4.BD.9C.E6.AD.A5.E9.AA.A4.
|
|
3207
3581
|
:type IsForceUseMobile: bool
|
|
3208
3582
|
:param _Uui: Custom data, length limited to 1024 bytes.
|
|
3209
3583
|
:type Uui: str
|
|
@@ -3232,7 +3606,7 @@ class CreateCallOutSessionRequest(AbstractModel):
|
|
|
3232
3606
|
|
|
3233
3607
|
@property
|
|
3234
3608
|
def UserId(self):
|
|
3235
|
-
"""Customer service user
|
|
3609
|
+
"""Customer service user ID, generally the customer service email. ensure that the mobile number has been bound. https://intl.cloud.tencent.com/document/product/679/76067?from_cn_redirect=1#.E6.AD.A5.E9.AA.A42.EF.BC.9A.E5.AE.8C.E5.96.84.E8.B4.A6.E5.8F.B7.E4.BF.A1.E6.81.AF.
|
|
3236
3610
|
:rtype: str
|
|
3237
3611
|
"""
|
|
3238
3612
|
return self._UserId
|
|
@@ -3276,7 +3650,7 @@ class CreateCallOutSessionRequest(AbstractModel):
|
|
|
3276
3650
|
|
|
3277
3651
|
@property
|
|
3278
3652
|
def IsForceUseMobile(self):
|
|
3279
|
-
"""Whether to force the use of
|
|
3653
|
+
"""Whether to force the use of mobile outbound call. currently only supports true. if set to true, ensure the allowlist is configured. https://intl.cloud.tencent.com/document/product/679/76744?from_cn_redirect=1#.E6.93.8D.E4.BD.9C.E6.AD.A5.E9.AA.A4.
|
|
3280
3654
|
:rtype: bool
|
|
3281
3655
|
"""
|
|
3282
3656
|
return self._IsForceUseMobile
|
|
@@ -3825,6 +4199,10 @@ class CreatePredictiveDialingCampaignRequest(AbstractModel):
|
|
|
3825
4199
|
:type UUI: str
|
|
3826
4200
|
:param _CalleeAttributes: Property of the called.
|
|
3827
4201
|
:type CalleeAttributes: list of CalleeAttribute
|
|
4202
|
+
:param _TimeZone: IANA time zone name. see https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones.
|
|
4203
|
+
:type TimeZone: str
|
|
4204
|
+
:param _AvailableTime: Value range of available time.
|
|
4205
|
+
:type AvailableTime: list of TimeRange
|
|
3828
4206
|
"""
|
|
3829
4207
|
self._SdkAppId = None
|
|
3830
4208
|
self._Name = None
|
|
@@ -3842,6 +4220,8 @@ class CreatePredictiveDialingCampaignRequest(AbstractModel):
|
|
|
3842
4220
|
self._Variables = None
|
|
3843
4221
|
self._UUI = None
|
|
3844
4222
|
self._CalleeAttributes = None
|
|
4223
|
+
self._TimeZone = None
|
|
4224
|
+
self._AvailableTime = None
|
|
3845
4225
|
|
|
3846
4226
|
@property
|
|
3847
4227
|
def SdkAppId(self):
|
|
@@ -4019,6 +4399,28 @@ class CreatePredictiveDialingCampaignRequest(AbstractModel):
|
|
|
4019
4399
|
def CalleeAttributes(self, CalleeAttributes):
|
|
4020
4400
|
self._CalleeAttributes = CalleeAttributes
|
|
4021
4401
|
|
|
4402
|
+
@property
|
|
4403
|
+
def TimeZone(self):
|
|
4404
|
+
"""IANA time zone name. see https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones.
|
|
4405
|
+
:rtype: str
|
|
4406
|
+
"""
|
|
4407
|
+
return self._TimeZone
|
|
4408
|
+
|
|
4409
|
+
@TimeZone.setter
|
|
4410
|
+
def TimeZone(self, TimeZone):
|
|
4411
|
+
self._TimeZone = TimeZone
|
|
4412
|
+
|
|
4413
|
+
@property
|
|
4414
|
+
def AvailableTime(self):
|
|
4415
|
+
"""Value range of available time.
|
|
4416
|
+
:rtype: list of TimeRange
|
|
4417
|
+
"""
|
|
4418
|
+
return self._AvailableTime
|
|
4419
|
+
|
|
4420
|
+
@AvailableTime.setter
|
|
4421
|
+
def AvailableTime(self, AvailableTime):
|
|
4422
|
+
self._AvailableTime = AvailableTime
|
|
4423
|
+
|
|
4022
4424
|
|
|
4023
4425
|
def _deserialize(self, params):
|
|
4024
4426
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -4047,6 +4449,13 @@ class CreatePredictiveDialingCampaignRequest(AbstractModel):
|
|
|
4047
4449
|
obj = CalleeAttribute()
|
|
4048
4450
|
obj._deserialize(item)
|
|
4049
4451
|
self._CalleeAttributes.append(obj)
|
|
4452
|
+
self._TimeZone = params.get("TimeZone")
|
|
4453
|
+
if params.get("AvailableTime") is not None:
|
|
4454
|
+
self._AvailableTime = []
|
|
4455
|
+
for item in params.get("AvailableTime"):
|
|
4456
|
+
obj = TimeRange()
|
|
4457
|
+
obj._deserialize(item)
|
|
4458
|
+
self._AvailableTime.append(obj)
|
|
4050
4459
|
memeber_set = set(params.keys())
|
|
4051
4460
|
for name, value in vars(self).items():
|
|
4052
4461
|
property_name = name[1:]
|
|
@@ -4358,24 +4767,24 @@ class CreateStaffResponse(AbstractModel):
|
|
|
4358
4767
|
self._RequestId = params.get("RequestId")
|
|
4359
4768
|
|
|
4360
4769
|
|
|
4361
|
-
class
|
|
4362
|
-
"""
|
|
4770
|
+
class DeleteCCCSkillGroupRequest(AbstractModel):
|
|
4771
|
+
"""DeleteCCCSkillGroup request structure.
|
|
4363
4772
|
|
|
4364
4773
|
"""
|
|
4365
4774
|
|
|
4366
4775
|
def __init__(self):
|
|
4367
4776
|
r"""
|
|
4368
|
-
:param _SdkAppId:
|
|
4777
|
+
:param _SdkAppId: App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
4369
4778
|
:type SdkAppId: int
|
|
4370
|
-
:param
|
|
4371
|
-
:type
|
|
4779
|
+
:param _SkillGroupId: Skill group ID.
|
|
4780
|
+
:type SkillGroupId: int
|
|
4372
4781
|
"""
|
|
4373
4782
|
self._SdkAppId = None
|
|
4374
|
-
self.
|
|
4783
|
+
self._SkillGroupId = None
|
|
4375
4784
|
|
|
4376
4785
|
@property
|
|
4377
4786
|
def SdkAppId(self):
|
|
4378
|
-
"""
|
|
4787
|
+
"""App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
4379
4788
|
:rtype: int
|
|
4380
4789
|
"""
|
|
4381
4790
|
return self._SdkAppId
|
|
@@ -4385,20 +4794,20 @@ class DeleteExtensionRequest(AbstractModel):
|
|
|
4385
4794
|
self._SdkAppId = SdkAppId
|
|
4386
4795
|
|
|
4387
4796
|
@property
|
|
4388
|
-
def
|
|
4389
|
-
"""
|
|
4390
|
-
:rtype:
|
|
4797
|
+
def SkillGroupId(self):
|
|
4798
|
+
"""Skill group ID.
|
|
4799
|
+
:rtype: int
|
|
4391
4800
|
"""
|
|
4392
|
-
return self.
|
|
4801
|
+
return self._SkillGroupId
|
|
4393
4802
|
|
|
4394
|
-
@
|
|
4395
|
-
def
|
|
4396
|
-
self.
|
|
4803
|
+
@SkillGroupId.setter
|
|
4804
|
+
def SkillGroupId(self, SkillGroupId):
|
|
4805
|
+
self._SkillGroupId = SkillGroupId
|
|
4397
4806
|
|
|
4398
4807
|
|
|
4399
4808
|
def _deserialize(self, params):
|
|
4400
4809
|
self._SdkAppId = params.get("SdkAppId")
|
|
4401
|
-
self.
|
|
4810
|
+
self._SkillGroupId = params.get("SkillGroupId")
|
|
4402
4811
|
memeber_set = set(params.keys())
|
|
4403
4812
|
for name, value in vars(self).items():
|
|
4404
4813
|
property_name = name[1:]
|
|
@@ -4409,8 +4818,8 @@ class DeleteExtensionRequest(AbstractModel):
|
|
|
4409
4818
|
|
|
4410
4819
|
|
|
4411
4820
|
|
|
4412
|
-
class
|
|
4413
|
-
"""
|
|
4821
|
+
class DeleteCCCSkillGroupResponse(AbstractModel):
|
|
4822
|
+
"""DeleteCCCSkillGroup response structure.
|
|
4414
4823
|
|
|
4415
4824
|
"""
|
|
4416
4825
|
|
|
@@ -4437,8 +4846,8 @@ class DeleteExtensionResponse(AbstractModel):
|
|
|
4437
4846
|
self._RequestId = params.get("RequestId")
|
|
4438
4847
|
|
|
4439
4848
|
|
|
4440
|
-
class
|
|
4441
|
-
"""
|
|
4849
|
+
class DeleteExtensionRequest(AbstractModel):
|
|
4850
|
+
"""DeleteExtension request structure.
|
|
4442
4851
|
|
|
4443
4852
|
"""
|
|
4444
4853
|
|
|
@@ -4446,11 +4855,11 @@ class DeletePredictiveDialingCampaignRequest(AbstractModel):
|
|
|
4446
4855
|
r"""
|
|
4447
4856
|
:param _SdkAppId: Application id (required) can be found at https://console.cloud.tencent.com/ccc.
|
|
4448
4857
|
:type SdkAppId: int
|
|
4449
|
-
:param
|
|
4450
|
-
:type
|
|
4858
|
+
:param _ExtensionId: Extension.
|
|
4859
|
+
:type ExtensionId: str
|
|
4451
4860
|
"""
|
|
4452
4861
|
self._SdkAppId = None
|
|
4453
|
-
self.
|
|
4862
|
+
self._ExtensionId = None
|
|
4454
4863
|
|
|
4455
4864
|
@property
|
|
4456
4865
|
def SdkAppId(self):
|
|
@@ -4464,20 +4873,20 @@ class DeletePredictiveDialingCampaignRequest(AbstractModel):
|
|
|
4464
4873
|
self._SdkAppId = SdkAppId
|
|
4465
4874
|
|
|
4466
4875
|
@property
|
|
4467
|
-
def
|
|
4468
|
-
"""
|
|
4469
|
-
:rtype:
|
|
4876
|
+
def ExtensionId(self):
|
|
4877
|
+
"""Extension.
|
|
4878
|
+
:rtype: str
|
|
4470
4879
|
"""
|
|
4471
|
-
return self.
|
|
4880
|
+
return self._ExtensionId
|
|
4472
4881
|
|
|
4473
|
-
@
|
|
4474
|
-
def
|
|
4475
|
-
self.
|
|
4882
|
+
@ExtensionId.setter
|
|
4883
|
+
def ExtensionId(self, ExtensionId):
|
|
4884
|
+
self._ExtensionId = ExtensionId
|
|
4476
4885
|
|
|
4477
4886
|
|
|
4478
4887
|
def _deserialize(self, params):
|
|
4479
4888
|
self._SdkAppId = params.get("SdkAppId")
|
|
4480
|
-
self.
|
|
4889
|
+
self._ExtensionId = params.get("ExtensionId")
|
|
4481
4890
|
memeber_set = set(params.keys())
|
|
4482
4891
|
for name, value in vars(self).items():
|
|
4483
4892
|
property_name = name[1:]
|
|
@@ -4488,8 +4897,8 @@ class DeletePredictiveDialingCampaignRequest(AbstractModel):
|
|
|
4488
4897
|
|
|
4489
4898
|
|
|
4490
4899
|
|
|
4491
|
-
class
|
|
4492
|
-
"""
|
|
4900
|
+
class DeleteExtensionResponse(AbstractModel):
|
|
4901
|
+
"""DeleteExtension response structure.
|
|
4493
4902
|
|
|
4494
4903
|
"""
|
|
4495
4904
|
|
|
@@ -4516,8 +4925,8 @@ class DeletePredictiveDialingCampaignResponse(AbstractModel):
|
|
|
4516
4925
|
self._RequestId = params.get("RequestId")
|
|
4517
4926
|
|
|
4518
4927
|
|
|
4519
|
-
class
|
|
4520
|
-
"""
|
|
4928
|
+
class DeletePredictiveDialingCampaignRequest(AbstractModel):
|
|
4929
|
+
"""DeletePredictiveDialingCampaign request structure.
|
|
4521
4930
|
|
|
4522
4931
|
"""
|
|
4523
4932
|
|
|
@@ -4525,11 +4934,90 @@ class DeleteStaffRequest(AbstractModel):
|
|
|
4525
4934
|
r"""
|
|
4526
4935
|
:param _SdkAppId: Application id (required) can be found at https://console.cloud.tencent.com/ccc.
|
|
4527
4936
|
:type SdkAppId: int
|
|
4528
|
-
:param
|
|
4529
|
-
:type
|
|
4937
|
+
:param _CampaignId: <Task id>.
|
|
4938
|
+
:type CampaignId: int
|
|
4530
4939
|
"""
|
|
4531
4940
|
self._SdkAppId = None
|
|
4532
|
-
self.
|
|
4941
|
+
self._CampaignId = None
|
|
4942
|
+
|
|
4943
|
+
@property
|
|
4944
|
+
def SdkAppId(self):
|
|
4945
|
+
"""Application id (required) can be found at https://console.cloud.tencent.com/ccc.
|
|
4946
|
+
:rtype: int
|
|
4947
|
+
"""
|
|
4948
|
+
return self._SdkAppId
|
|
4949
|
+
|
|
4950
|
+
@SdkAppId.setter
|
|
4951
|
+
def SdkAppId(self, SdkAppId):
|
|
4952
|
+
self._SdkAppId = SdkAppId
|
|
4953
|
+
|
|
4954
|
+
@property
|
|
4955
|
+
def CampaignId(self):
|
|
4956
|
+
"""<Task id>.
|
|
4957
|
+
:rtype: int
|
|
4958
|
+
"""
|
|
4959
|
+
return self._CampaignId
|
|
4960
|
+
|
|
4961
|
+
@CampaignId.setter
|
|
4962
|
+
def CampaignId(self, CampaignId):
|
|
4963
|
+
self._CampaignId = CampaignId
|
|
4964
|
+
|
|
4965
|
+
|
|
4966
|
+
def _deserialize(self, params):
|
|
4967
|
+
self._SdkAppId = params.get("SdkAppId")
|
|
4968
|
+
self._CampaignId = params.get("CampaignId")
|
|
4969
|
+
memeber_set = set(params.keys())
|
|
4970
|
+
for name, value in vars(self).items():
|
|
4971
|
+
property_name = name[1:]
|
|
4972
|
+
if property_name in memeber_set:
|
|
4973
|
+
memeber_set.remove(property_name)
|
|
4974
|
+
if len(memeber_set) > 0:
|
|
4975
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4976
|
+
|
|
4977
|
+
|
|
4978
|
+
|
|
4979
|
+
class DeletePredictiveDialingCampaignResponse(AbstractModel):
|
|
4980
|
+
"""DeletePredictiveDialingCampaign response structure.
|
|
4981
|
+
|
|
4982
|
+
"""
|
|
4983
|
+
|
|
4984
|
+
def __init__(self):
|
|
4985
|
+
r"""
|
|
4986
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4987
|
+
:type RequestId: str
|
|
4988
|
+
"""
|
|
4989
|
+
self._RequestId = None
|
|
4990
|
+
|
|
4991
|
+
@property
|
|
4992
|
+
def RequestId(self):
|
|
4993
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4994
|
+
:rtype: str
|
|
4995
|
+
"""
|
|
4996
|
+
return self._RequestId
|
|
4997
|
+
|
|
4998
|
+
@RequestId.setter
|
|
4999
|
+
def RequestId(self, RequestId):
|
|
5000
|
+
self._RequestId = RequestId
|
|
5001
|
+
|
|
5002
|
+
|
|
5003
|
+
def _deserialize(self, params):
|
|
5004
|
+
self._RequestId = params.get("RequestId")
|
|
5005
|
+
|
|
5006
|
+
|
|
5007
|
+
class DeleteStaffRequest(AbstractModel):
|
|
5008
|
+
"""DeleteStaff request structure.
|
|
5009
|
+
|
|
5010
|
+
"""
|
|
5011
|
+
|
|
5012
|
+
def __init__(self):
|
|
5013
|
+
r"""
|
|
5014
|
+
:param _SdkAppId: Application id (required) can be found at https://console.cloud.tencent.com/ccc.
|
|
5015
|
+
:type SdkAppId: int
|
|
5016
|
+
:param _StaffList: List of customer service emails to be deleted, supports up to 200 at a time.
|
|
5017
|
+
:type StaffList: list of str
|
|
5018
|
+
"""
|
|
5019
|
+
self._SdkAppId = None
|
|
5020
|
+
self._StaffList = None
|
|
4533
5021
|
|
|
4534
5022
|
@property
|
|
4535
5023
|
def SdkAppId(self):
|
|
@@ -4739,6 +5227,156 @@ class DescribeAICallExtractResultResponse(AbstractModel):
|
|
|
4739
5227
|
self._RequestId = params.get("RequestId")
|
|
4740
5228
|
|
|
4741
5229
|
|
|
5230
|
+
class DescribeAILatencyRequest(AbstractModel):
|
|
5231
|
+
"""DescribeAILatency request structure.
|
|
5232
|
+
|
|
5233
|
+
"""
|
|
5234
|
+
|
|
5235
|
+
def __init__(self):
|
|
5236
|
+
r"""
|
|
5237
|
+
:param _SdkAppId: App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
5238
|
+
:type SdkAppId: int
|
|
5239
|
+
:param _SessionId: Session ID.
|
|
5240
|
+
:type SessionId: str
|
|
5241
|
+
:param _StartTime: Search start time.
|
|
5242
|
+
:type StartTime: int
|
|
5243
|
+
:param _EndTime: 1737350008
|
|
5244
|
+
:type EndTime: int
|
|
5245
|
+
"""
|
|
5246
|
+
self._SdkAppId = None
|
|
5247
|
+
self._SessionId = None
|
|
5248
|
+
self._StartTime = None
|
|
5249
|
+
self._EndTime = None
|
|
5250
|
+
|
|
5251
|
+
@property
|
|
5252
|
+
def SdkAppId(self):
|
|
5253
|
+
"""App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
5254
|
+
:rtype: int
|
|
5255
|
+
"""
|
|
5256
|
+
return self._SdkAppId
|
|
5257
|
+
|
|
5258
|
+
@SdkAppId.setter
|
|
5259
|
+
def SdkAppId(self, SdkAppId):
|
|
5260
|
+
self._SdkAppId = SdkAppId
|
|
5261
|
+
|
|
5262
|
+
@property
|
|
5263
|
+
def SessionId(self):
|
|
5264
|
+
"""Session ID.
|
|
5265
|
+
:rtype: str
|
|
5266
|
+
"""
|
|
5267
|
+
return self._SessionId
|
|
5268
|
+
|
|
5269
|
+
@SessionId.setter
|
|
5270
|
+
def SessionId(self, SessionId):
|
|
5271
|
+
self._SessionId = SessionId
|
|
5272
|
+
|
|
5273
|
+
@property
|
|
5274
|
+
def StartTime(self):
|
|
5275
|
+
"""Search start time.
|
|
5276
|
+
:rtype: int
|
|
5277
|
+
"""
|
|
5278
|
+
return self._StartTime
|
|
5279
|
+
|
|
5280
|
+
@StartTime.setter
|
|
5281
|
+
def StartTime(self, StartTime):
|
|
5282
|
+
self._StartTime = StartTime
|
|
5283
|
+
|
|
5284
|
+
@property
|
|
5285
|
+
def EndTime(self):
|
|
5286
|
+
"""1737350008
|
|
5287
|
+
:rtype: int
|
|
5288
|
+
"""
|
|
5289
|
+
return self._EndTime
|
|
5290
|
+
|
|
5291
|
+
@EndTime.setter
|
|
5292
|
+
def EndTime(self, EndTime):
|
|
5293
|
+
self._EndTime = EndTime
|
|
5294
|
+
|
|
5295
|
+
|
|
5296
|
+
def _deserialize(self, params):
|
|
5297
|
+
self._SdkAppId = params.get("SdkAppId")
|
|
5298
|
+
self._SessionId = params.get("SessionId")
|
|
5299
|
+
self._StartTime = params.get("StartTime")
|
|
5300
|
+
self._EndTime = params.get("EndTime")
|
|
5301
|
+
memeber_set = set(params.keys())
|
|
5302
|
+
for name, value in vars(self).items():
|
|
5303
|
+
property_name = name[1:]
|
|
5304
|
+
if property_name in memeber_set:
|
|
5305
|
+
memeber_set.remove(property_name)
|
|
5306
|
+
if len(memeber_set) > 0:
|
|
5307
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5308
|
+
|
|
5309
|
+
|
|
5310
|
+
|
|
5311
|
+
class DescribeAILatencyResponse(AbstractModel):
|
|
5312
|
+
"""DescribeAILatency response structure.
|
|
5313
|
+
|
|
5314
|
+
"""
|
|
5315
|
+
|
|
5316
|
+
def __init__(self):
|
|
5317
|
+
r"""
|
|
5318
|
+
:param _AILatencyDetail: Detailed data of latency.
|
|
5319
|
+
-1 indicates no corresponding data.
|
|
5320
|
+
:type AILatencyDetail: list of AILatencyDetail
|
|
5321
|
+
:param _AILatencyStatistics: Latency statistical data.
|
|
5322
|
+
-1 indicates no corresponding data.
|
|
5323
|
+
:type AILatencyStatistics: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatistics`
|
|
5324
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5325
|
+
:type RequestId: str
|
|
5326
|
+
"""
|
|
5327
|
+
self._AILatencyDetail = None
|
|
5328
|
+
self._AILatencyStatistics = None
|
|
5329
|
+
self._RequestId = None
|
|
5330
|
+
|
|
5331
|
+
@property
|
|
5332
|
+
def AILatencyDetail(self):
|
|
5333
|
+
"""Detailed data of latency.
|
|
5334
|
+
-1 indicates no corresponding data.
|
|
5335
|
+
:rtype: list of AILatencyDetail
|
|
5336
|
+
"""
|
|
5337
|
+
return self._AILatencyDetail
|
|
5338
|
+
|
|
5339
|
+
@AILatencyDetail.setter
|
|
5340
|
+
def AILatencyDetail(self, AILatencyDetail):
|
|
5341
|
+
self._AILatencyDetail = AILatencyDetail
|
|
5342
|
+
|
|
5343
|
+
@property
|
|
5344
|
+
def AILatencyStatistics(self):
|
|
5345
|
+
"""Latency statistical data.
|
|
5346
|
+
-1 indicates no corresponding data.
|
|
5347
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.AILatencyStatistics`
|
|
5348
|
+
"""
|
|
5349
|
+
return self._AILatencyStatistics
|
|
5350
|
+
|
|
5351
|
+
@AILatencyStatistics.setter
|
|
5352
|
+
def AILatencyStatistics(self, AILatencyStatistics):
|
|
5353
|
+
self._AILatencyStatistics = AILatencyStatistics
|
|
5354
|
+
|
|
5355
|
+
@property
|
|
5356
|
+
def RequestId(self):
|
|
5357
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5358
|
+
:rtype: str
|
|
5359
|
+
"""
|
|
5360
|
+
return self._RequestId
|
|
5361
|
+
|
|
5362
|
+
@RequestId.setter
|
|
5363
|
+
def RequestId(self, RequestId):
|
|
5364
|
+
self._RequestId = RequestId
|
|
5365
|
+
|
|
5366
|
+
|
|
5367
|
+
def _deserialize(self, params):
|
|
5368
|
+
if params.get("AILatencyDetail") is not None:
|
|
5369
|
+
self._AILatencyDetail = []
|
|
5370
|
+
for item in params.get("AILatencyDetail"):
|
|
5371
|
+
obj = AILatencyDetail()
|
|
5372
|
+
obj._deserialize(item)
|
|
5373
|
+
self._AILatencyDetail.append(obj)
|
|
5374
|
+
if params.get("AILatencyStatistics") is not None:
|
|
5375
|
+
self._AILatencyStatistics = AILatencyStatistics()
|
|
5376
|
+
self._AILatencyStatistics._deserialize(params.get("AILatencyStatistics"))
|
|
5377
|
+
self._RequestId = params.get("RequestId")
|
|
5378
|
+
|
|
5379
|
+
|
|
4742
5380
|
class DescribeAgentCruiseDialingCampaignRequest(AbstractModel):
|
|
4743
5381
|
"""DescribeAgentCruiseDialingCampaign request structure.
|
|
4744
5382
|
|
|
@@ -8712,6 +9350,85 @@ class ExtensionInfo(AbstractModel):
|
|
|
8712
9350
|
|
|
8713
9351
|
|
|
8714
9352
|
|
|
9353
|
+
class ForceMemberOfflineRequest(AbstractModel):
|
|
9354
|
+
"""ForceMemberOffline request structure.
|
|
9355
|
+
|
|
9356
|
+
"""
|
|
9357
|
+
|
|
9358
|
+
def __init__(self):
|
|
9359
|
+
r"""
|
|
9360
|
+
:param _SdkAppId: App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
9361
|
+
:type SdkAppId: int
|
|
9362
|
+
:param _UserId: Customer service ID.
|
|
9363
|
+
:type UserId: str
|
|
9364
|
+
"""
|
|
9365
|
+
self._SdkAppId = None
|
|
9366
|
+
self._UserId = None
|
|
9367
|
+
|
|
9368
|
+
@property
|
|
9369
|
+
def SdkAppId(self):
|
|
9370
|
+
"""App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
9371
|
+
:rtype: int
|
|
9372
|
+
"""
|
|
9373
|
+
return self._SdkAppId
|
|
9374
|
+
|
|
9375
|
+
@SdkAppId.setter
|
|
9376
|
+
def SdkAppId(self, SdkAppId):
|
|
9377
|
+
self._SdkAppId = SdkAppId
|
|
9378
|
+
|
|
9379
|
+
@property
|
|
9380
|
+
def UserId(self):
|
|
9381
|
+
"""Customer service ID.
|
|
9382
|
+
:rtype: str
|
|
9383
|
+
"""
|
|
9384
|
+
return self._UserId
|
|
9385
|
+
|
|
9386
|
+
@UserId.setter
|
|
9387
|
+
def UserId(self, UserId):
|
|
9388
|
+
self._UserId = UserId
|
|
9389
|
+
|
|
9390
|
+
|
|
9391
|
+
def _deserialize(self, params):
|
|
9392
|
+
self._SdkAppId = params.get("SdkAppId")
|
|
9393
|
+
self._UserId = params.get("UserId")
|
|
9394
|
+
memeber_set = set(params.keys())
|
|
9395
|
+
for name, value in vars(self).items():
|
|
9396
|
+
property_name = name[1:]
|
|
9397
|
+
if property_name in memeber_set:
|
|
9398
|
+
memeber_set.remove(property_name)
|
|
9399
|
+
if len(memeber_set) > 0:
|
|
9400
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9401
|
+
|
|
9402
|
+
|
|
9403
|
+
|
|
9404
|
+
class ForceMemberOfflineResponse(AbstractModel):
|
|
9405
|
+
"""ForceMemberOffline response structure.
|
|
9406
|
+
|
|
9407
|
+
"""
|
|
9408
|
+
|
|
9409
|
+
def __init__(self):
|
|
9410
|
+
r"""
|
|
9411
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
9412
|
+
:type RequestId: str
|
|
9413
|
+
"""
|
|
9414
|
+
self._RequestId = None
|
|
9415
|
+
|
|
9416
|
+
@property
|
|
9417
|
+
def RequestId(self):
|
|
9418
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
9419
|
+
:rtype: str
|
|
9420
|
+
"""
|
|
9421
|
+
return self._RequestId
|
|
9422
|
+
|
|
9423
|
+
@RequestId.setter
|
|
9424
|
+
def RequestId(self, RequestId):
|
|
9425
|
+
self._RequestId = RequestId
|
|
9426
|
+
|
|
9427
|
+
|
|
9428
|
+
def _deserialize(self, params):
|
|
9429
|
+
self._RequestId = params.get("RequestId")
|
|
9430
|
+
|
|
9431
|
+
|
|
8715
9432
|
class HangUpCallRequest(AbstractModel):
|
|
8716
9433
|
"""HangUpCall request structure.
|
|
8717
9434
|
|
|
@@ -10460,6 +11177,85 @@ class ResetExtensionPasswordResponse(AbstractModel):
|
|
|
10460
11177
|
self._RequestId = params.get("RequestId")
|
|
10461
11178
|
|
|
10462
11179
|
|
|
11180
|
+
class RestoreMemberOnlineRequest(AbstractModel):
|
|
11181
|
+
"""RestoreMemberOnline request structure.
|
|
11182
|
+
|
|
11183
|
+
"""
|
|
11184
|
+
|
|
11185
|
+
def __init__(self):
|
|
11186
|
+
r"""
|
|
11187
|
+
:param _SdkAppId: App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
11188
|
+
:type SdkAppId: int
|
|
11189
|
+
:param _UserId: Customer service ID.
|
|
11190
|
+
:type UserId: str
|
|
11191
|
+
"""
|
|
11192
|
+
self._SdkAppId = None
|
|
11193
|
+
self._UserId = None
|
|
11194
|
+
|
|
11195
|
+
@property
|
|
11196
|
+
def SdkAppId(self):
|
|
11197
|
+
"""App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
11198
|
+
:rtype: int
|
|
11199
|
+
"""
|
|
11200
|
+
return self._SdkAppId
|
|
11201
|
+
|
|
11202
|
+
@SdkAppId.setter
|
|
11203
|
+
def SdkAppId(self, SdkAppId):
|
|
11204
|
+
self._SdkAppId = SdkAppId
|
|
11205
|
+
|
|
11206
|
+
@property
|
|
11207
|
+
def UserId(self):
|
|
11208
|
+
"""Customer service ID.
|
|
11209
|
+
:rtype: str
|
|
11210
|
+
"""
|
|
11211
|
+
return self._UserId
|
|
11212
|
+
|
|
11213
|
+
@UserId.setter
|
|
11214
|
+
def UserId(self, UserId):
|
|
11215
|
+
self._UserId = UserId
|
|
11216
|
+
|
|
11217
|
+
|
|
11218
|
+
def _deserialize(self, params):
|
|
11219
|
+
self._SdkAppId = params.get("SdkAppId")
|
|
11220
|
+
self._UserId = params.get("UserId")
|
|
11221
|
+
memeber_set = set(params.keys())
|
|
11222
|
+
for name, value in vars(self).items():
|
|
11223
|
+
property_name = name[1:]
|
|
11224
|
+
if property_name in memeber_set:
|
|
11225
|
+
memeber_set.remove(property_name)
|
|
11226
|
+
if len(memeber_set) > 0:
|
|
11227
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
11228
|
+
|
|
11229
|
+
|
|
11230
|
+
|
|
11231
|
+
class RestoreMemberOnlineResponse(AbstractModel):
|
|
11232
|
+
"""RestoreMemberOnline response structure.
|
|
11233
|
+
|
|
11234
|
+
"""
|
|
11235
|
+
|
|
11236
|
+
def __init__(self):
|
|
11237
|
+
r"""
|
|
11238
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
11239
|
+
:type RequestId: str
|
|
11240
|
+
"""
|
|
11241
|
+
self._RequestId = None
|
|
11242
|
+
|
|
11243
|
+
@property
|
|
11244
|
+
def RequestId(self):
|
|
11245
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
11246
|
+
:rtype: str
|
|
11247
|
+
"""
|
|
11248
|
+
return self._RequestId
|
|
11249
|
+
|
|
11250
|
+
@RequestId.setter
|
|
11251
|
+
def RequestId(self, RequestId):
|
|
11252
|
+
self._RequestId = RequestId
|
|
11253
|
+
|
|
11254
|
+
|
|
11255
|
+
def _deserialize(self, params):
|
|
11256
|
+
self._RequestId = params.get("RequestId")
|
|
11257
|
+
|
|
11258
|
+
|
|
10463
11259
|
class ResumePredictiveDialingCampaignRequest(AbstractModel):
|
|
10464
11260
|
"""ResumePredictiveDialingCampaign request structure.
|
|
10465
11261
|
|
|
@@ -11449,7 +12245,12 @@ class StaffInfo(AbstractModel):
|
|
|
11449
12245
|
:param _StaffNumber: Agent id.
|
|
11450
12246
|
:type StaffNumber: str
|
|
11451
12247
|
:param _RoleId: User role id.
|
|
12248
|
+
When a user is bound to multiple roles, RoleIdList shall prevail.
|
|
11452
12249
|
:type RoleId: int
|
|
12250
|
+
:param _RoleIdList: User role id list.
|
|
12251
|
+
:type RoleIdList: int
|
|
12252
|
+
:param _RoleList:
|
|
12253
|
+
:type RoleList: list of int non-negative
|
|
11453
12254
|
:param _SkillGroupList: Affiliated skill group list.
|
|
11454
12255
|
:type SkillGroupList: list of SkillGroupItem
|
|
11455
12256
|
:param _LastModifyTimestamp: Last modification time.
|
|
@@ -11463,6 +12264,8 @@ class StaffInfo(AbstractModel):
|
|
|
11463
12264
|
self._Nick = None
|
|
11464
12265
|
self._StaffNumber = None
|
|
11465
12266
|
self._RoleId = None
|
|
12267
|
+
self._RoleIdList = None
|
|
12268
|
+
self._RoleList = None
|
|
11466
12269
|
self._SkillGroupList = None
|
|
11467
12270
|
self._LastModifyTimestamp = None
|
|
11468
12271
|
self._ExtensionNumber = None
|
|
@@ -11527,6 +12330,7 @@ class StaffInfo(AbstractModel):
|
|
|
11527
12330
|
warnings.warn("parameter `RoleId` is deprecated", DeprecationWarning)
|
|
11528
12331
|
|
|
11529
12332
|
"""User role id.
|
|
12333
|
+
When a user is bound to multiple roles, RoleIdList shall prevail.
|
|
11530
12334
|
:rtype: int
|
|
11531
12335
|
"""
|
|
11532
12336
|
return self._RoleId
|
|
@@ -11537,6 +12341,32 @@ class StaffInfo(AbstractModel):
|
|
|
11537
12341
|
|
|
11538
12342
|
self._RoleId = RoleId
|
|
11539
12343
|
|
|
12344
|
+
@property
|
|
12345
|
+
def RoleIdList(self):
|
|
12346
|
+
warnings.warn("parameter `RoleIdList` is deprecated", DeprecationWarning)
|
|
12347
|
+
|
|
12348
|
+
"""User role id list.
|
|
12349
|
+
:rtype: int
|
|
12350
|
+
"""
|
|
12351
|
+
return self._RoleIdList
|
|
12352
|
+
|
|
12353
|
+
@RoleIdList.setter
|
|
12354
|
+
def RoleIdList(self, RoleIdList):
|
|
12355
|
+
warnings.warn("parameter `RoleIdList` is deprecated", DeprecationWarning)
|
|
12356
|
+
|
|
12357
|
+
self._RoleIdList = RoleIdList
|
|
12358
|
+
|
|
12359
|
+
@property
|
|
12360
|
+
def RoleList(self):
|
|
12361
|
+
"""
|
|
12362
|
+
:rtype: list of int non-negative
|
|
12363
|
+
"""
|
|
12364
|
+
return self._RoleList
|
|
12365
|
+
|
|
12366
|
+
@RoleList.setter
|
|
12367
|
+
def RoleList(self, RoleList):
|
|
12368
|
+
self._RoleList = RoleList
|
|
12369
|
+
|
|
11540
12370
|
@property
|
|
11541
12371
|
def SkillGroupList(self):
|
|
11542
12372
|
"""Affiliated skill group list.
|
|
@@ -11578,6 +12408,8 @@ class StaffInfo(AbstractModel):
|
|
|
11578
12408
|
self._Nick = params.get("Nick")
|
|
11579
12409
|
self._StaffNumber = params.get("StaffNumber")
|
|
11580
12410
|
self._RoleId = params.get("RoleId")
|
|
12411
|
+
self._RoleIdList = params.get("RoleIdList")
|
|
12412
|
+
self._RoleList = params.get("RoleList")
|
|
11581
12413
|
if params.get("SkillGroupList") is not None:
|
|
11582
12414
|
self._SkillGroupList = []
|
|
11583
12415
|
for item in params.get("SkillGroupList"):
|
|
@@ -12059,6 +12891,8 @@ class TelCdrInfo(AbstractModel):
|
|
|
12059
12891
|
:type Time: int
|
|
12060
12892
|
:param _Direction: Call direction: 0 - inbound, 1 - outbound.
|
|
12061
12893
|
:type Direction: int
|
|
12894
|
+
:param _CallType: Call Type: 1. Voice outbound call 2. Voice Inbound call 3. Audio Inbound 5 Predictive Dialing Call 6. Internal Call between Staff
|
|
12895
|
+
:type CallType: int
|
|
12062
12896
|
:param _Duration: Call duration.
|
|
12063
12897
|
:type Duration: int
|
|
12064
12898
|
:param _RecordURL: Recording information.
|
|
@@ -12067,60 +12901,60 @@ class TelCdrInfo(AbstractModel):
|
|
|
12067
12901
|
:type RecordId: str
|
|
12068
12902
|
:param _SeatUser: Agent information.
|
|
12069
12903
|
:type SeatUser: :class:`tencentcloud.ccc.v20200210.models.SeatUserInfo`
|
|
12070
|
-
:param _EndStatus: EndStatus corresponds one-to-one with
|
|
12904
|
+
:param _EndStatus: EndStatus corresponds one-to-one with EndStatusString. the specific enumeration is as follows:.
|
|
12071
12905
|
|
|
12072
|
-
**Scenario
|
|
12906
|
+
**Scenario EndStatus EndStatusString status description**.
|
|
12073
12907
|
|
|
12074
|
-
|
|
12908
|
+
Incoming and outgoing calls.
|
|
12075
12909
|
|
|
12076
|
-
|
|
12910
|
+
Incoming and outgoing calls 0 error exception termination.
|
|
12077
12911
|
|
|
12078
|
-
Inbound call
|
|
12912
|
+
Inbound call 102 ivrGiveUp user hang up during IVR.
|
|
12079
12913
|
|
|
12080
|
-
Inbound call
|
|
12914
|
+
Inbound call 103 waitingGiveUp user gives up while queuing.
|
|
12081
12915
|
|
|
12082
|
-
Inbound call
|
|
12916
|
+
Inbound call 104 ringingGiveUp user give up during ringing.
|
|
12083
12917
|
|
|
12084
|
-
Inbound call
|
|
12918
|
+
Inbound call 105 no agent online.
|
|
12085
12919
|
|
|
12086
|
-
Inbound call
|
|
12920
|
+
Inbound call 106 notWorkTime outside working hours.
|
|
12087
12921
|
|
|
12088
|
-
Inbound call
|
|
12922
|
+
Inbound call 107 ivrEnd ends after IVR.
|
|
12089
12923
|
|
|
12090
|
-
Inbound call
|
|
12924
|
+
Inbound call 100 blackList.
|
|
12091
12925
|
|
|
12092
|
-
|
|
12926
|
+
Outbound call 2 unconnected unanswered.
|
|
12093
12927
|
|
|
12094
|
-
Outgoing call
|
|
12928
|
+
Outgoing call 108 restrictedCallee the callee is restricted due to high risk.
|
|
12095
12929
|
|
|
12096
|
-
|
|
12930
|
+
Outbound call 109 too many requests outbound over-frequency limit.
|
|
12097
12931
|
|
|
12098
|
-
Outgoing call
|
|
12932
|
+
Outgoing call 110 restrictedArea valid values for the area where outgoing calls are restricted.
|
|
12099
12933
|
|
|
12100
|
-
|
|
12934
|
+
Outbound call 111 restrictedTime outgoing call time limit.
|
|
12101
12935
|
|
|
12102
|
-
|
|
12936
|
+
Outbound call 201 unknown unknown status.
|
|
12103
12937
|
|
|
12104
|
-
Outgoing call
|
|
12938
|
+
Outgoing call 202 not answered the callee did not answer.
|
|
12105
12939
|
|
|
12106
|
-
Outgoing call
|
|
12940
|
+
Outgoing call 203 userReject callee rejects and hangs up.
|
|
12107
12941
|
|
|
12108
|
-
|
|
12942
|
+
Outbound call 204 powerOff callee is powered off.
|
|
12109
12943
|
|
|
12110
|
-
|
|
12944
|
+
Outbound call 205 number does not exist the callee's number is non - existent.
|
|
12111
12945
|
|
|
12112
|
-
|
|
12946
|
+
Outbound call 206 busy callee is busy.
|
|
12113
12947
|
|
|
12114
|
-
|
|
12948
|
+
Outbound call 207 arrears callee in arrears.
|
|
12115
12949
|
|
|
12116
|
-
|
|
12950
|
+
Outbound call 208 operator channel exception.
|
|
12117
12951
|
|
|
12118
|
-
|
|
12952
|
+
Outbound call 209 callerCancel call cancellation by the caller.
|
|
12119
12953
|
|
|
12120
|
-
Outgoing call
|
|
12954
|
+
Outgoing call 210 notInService callee out of service area.
|
|
12121
12955
|
|
|
12122
|
-
|
|
12123
|
-
|
|
12956
|
+
Incoming and outgoing calls 211 clientError client errors.
|
|
12957
|
+
Outbound call 212 carrier blocked.
|
|
12124
12958
|
:type EndStatus: int
|
|
12125
12959
|
:param _SkillGroup: Skill group name.
|
|
12126
12960
|
:type SkillGroup: str
|
|
@@ -12142,60 +12976,60 @@ Outgoing call - 212 - carrierblocked - ISP blocking.
|
|
|
12142
12976
|
:type ServeParticipants: list of ServeParticipant
|
|
12143
12977
|
:param _SkillGroupId: Skill group id.
|
|
12144
12978
|
:type SkillGroupId: int
|
|
12145
|
-
:param _EndStatusString: EndStatus corresponds one-to-one with
|
|
12979
|
+
:param _EndStatusString: EndStatus corresponds one-to-one with EndStatusString. the specific enumeration is as follows:.
|
|
12146
12980
|
|
|
12147
|
-
**Scenario
|
|
12981
|
+
**Scenario EndStatus EndStatusString status description**.
|
|
12148
12982
|
|
|
12149
|
-
|
|
12983
|
+
Incoming and outgoing calls.
|
|
12150
12984
|
|
|
12151
|
-
|
|
12985
|
+
Incoming and outgoing calls 0 error exception termination.
|
|
12152
12986
|
|
|
12153
|
-
Inbound call
|
|
12987
|
+
Inbound call 102 ivrGiveUp user hang up during IVR.
|
|
12154
12988
|
|
|
12155
|
-
Inbound call
|
|
12989
|
+
Inbound call 103 waitingGiveUp user gives up while queuing.
|
|
12156
12990
|
|
|
12157
|
-
Inbound call
|
|
12991
|
+
Inbound call 104 ringingGiveUp user give up during ringing.
|
|
12158
12992
|
|
|
12159
|
-
Inbound call
|
|
12993
|
+
Inbound call 105 no agent online.
|
|
12160
12994
|
|
|
12161
|
-
Inbound call
|
|
12995
|
+
Inbound call 106 notWorkTime outside working hours.
|
|
12162
12996
|
|
|
12163
|
-
Inbound call
|
|
12997
|
+
Inbound call 107 ivrEnd ends after IVR.
|
|
12164
12998
|
|
|
12165
|
-
Inbound call
|
|
12999
|
+
Inbound call 100 blackList.
|
|
12166
13000
|
|
|
12167
|
-
|
|
13001
|
+
Outbound call 2 unconnected unanswered.
|
|
12168
13002
|
|
|
12169
|
-
Outgoing call
|
|
13003
|
+
Outgoing call 108 restrictedCallee the callee is restricted due to high risk.
|
|
12170
13004
|
|
|
12171
|
-
|
|
13005
|
+
Outbound call 109 too many requests outbound over-frequency limit.
|
|
12172
13006
|
|
|
12173
|
-
Outgoing call
|
|
13007
|
+
Outgoing call 110 restrictedArea valid values for the area where outgoing calls are restricted.
|
|
12174
13008
|
|
|
12175
|
-
|
|
13009
|
+
Outbound call 111 restrictedTime outgoing call time limit.
|
|
12176
13010
|
|
|
12177
|
-
Outgoing call
|
|
13011
|
+
Outgoing call 201 unknown unknown status.
|
|
12178
13012
|
|
|
12179
|
-
Outgoing call
|
|
13013
|
+
Outgoing call 202 notAnswer callee not answered.
|
|
12180
13014
|
|
|
12181
|
-
Outgoing call
|
|
13015
|
+
Outgoing call 203 userReject callee rejects and hangs up.
|
|
12182
13016
|
|
|
12183
|
-
|
|
13017
|
+
Outbound call 204 powerOff callee is powered off.
|
|
12184
13018
|
|
|
12185
|
-
|
|
13019
|
+
Outbound call 205 number does not exist the callee's number is non - existent.
|
|
12186
13020
|
|
|
12187
|
-
Outgoing call
|
|
13021
|
+
Outgoing call 206 busy callee is busy.
|
|
12188
13022
|
|
|
12189
|
-
|
|
13023
|
+
Outbound call 207 out of credit callee in arrears.
|
|
12190
13024
|
|
|
12191
|
-
|
|
13025
|
+
Outbound call 208 operator channel exception.
|
|
12192
13026
|
|
|
12193
|
-
Outgoing call
|
|
13027
|
+
Outgoing call 209 callerCancel call cancellation by the caller.
|
|
12194
13028
|
|
|
12195
|
-
Outgoing call
|
|
13029
|
+
Outgoing call 210 notInService callee out of service area.
|
|
12196
13030
|
|
|
12197
|
-
|
|
12198
|
-
|
|
13031
|
+
Incoming and outgoing calls 211 clientError client errors.
|
|
13032
|
+
Outbound call 212 carrier blocked.
|
|
12199
13033
|
:type EndStatusString: str
|
|
12200
13034
|
:param _StartTimestamp: Session start timestamp. unix second-level timestamp.
|
|
12201
13035
|
:type StartTimestamp: int
|
|
@@ -12242,6 +13076,7 @@ No record (offline asr generation is not enabled or no package is available).
|
|
|
12242
13076
|
self._Callee = None
|
|
12243
13077
|
self._Time = None
|
|
12244
13078
|
self._Direction = None
|
|
13079
|
+
self._CallType = None
|
|
12245
13080
|
self._Duration = None
|
|
12246
13081
|
self._RecordURL = None
|
|
12247
13082
|
self._RecordId = None
|
|
@@ -12320,6 +13155,17 @@ No record (offline asr generation is not enabled or no package is available).
|
|
|
12320
13155
|
def Direction(self, Direction):
|
|
12321
13156
|
self._Direction = Direction
|
|
12322
13157
|
|
|
13158
|
+
@property
|
|
13159
|
+
def CallType(self):
|
|
13160
|
+
"""Call Type: 1. Voice outbound call 2. Voice Inbound call 3. Audio Inbound 5 Predictive Dialing Call 6. Internal Call between Staff
|
|
13161
|
+
:rtype: int
|
|
13162
|
+
"""
|
|
13163
|
+
return self._CallType
|
|
13164
|
+
|
|
13165
|
+
@CallType.setter
|
|
13166
|
+
def CallType(self, CallType):
|
|
13167
|
+
self._CallType = CallType
|
|
13168
|
+
|
|
12323
13169
|
@property
|
|
12324
13170
|
def Duration(self):
|
|
12325
13171
|
"""Call duration.
|
|
@@ -12366,60 +13212,60 @@ No record (offline asr generation is not enabled or no package is available).
|
|
|
12366
13212
|
|
|
12367
13213
|
@property
|
|
12368
13214
|
def EndStatus(self):
|
|
12369
|
-
"""EndStatus corresponds one-to-one with
|
|
13215
|
+
"""EndStatus corresponds one-to-one with EndStatusString. the specific enumeration is as follows:.
|
|
12370
13216
|
|
|
12371
|
-
**Scenario
|
|
13217
|
+
**Scenario EndStatus EndStatusString status description**.
|
|
12372
13218
|
|
|
12373
|
-
|
|
13219
|
+
Incoming and outgoing calls.
|
|
12374
13220
|
|
|
12375
|
-
|
|
13221
|
+
Incoming and outgoing calls 0 error exception termination.
|
|
12376
13222
|
|
|
12377
|
-
Inbound call
|
|
13223
|
+
Inbound call 102 ivrGiveUp user hang up during IVR.
|
|
12378
13224
|
|
|
12379
|
-
Inbound call
|
|
13225
|
+
Inbound call 103 waitingGiveUp user gives up while queuing.
|
|
12380
13226
|
|
|
12381
|
-
Inbound call
|
|
13227
|
+
Inbound call 104 ringingGiveUp user give up during ringing.
|
|
12382
13228
|
|
|
12383
|
-
Inbound call
|
|
13229
|
+
Inbound call 105 no agent online.
|
|
12384
13230
|
|
|
12385
|
-
Inbound call
|
|
13231
|
+
Inbound call 106 notWorkTime outside working hours.
|
|
12386
13232
|
|
|
12387
|
-
Inbound call
|
|
13233
|
+
Inbound call 107 ivrEnd ends after IVR.
|
|
12388
13234
|
|
|
12389
|
-
Inbound call
|
|
13235
|
+
Inbound call 100 blackList.
|
|
12390
13236
|
|
|
12391
|
-
|
|
13237
|
+
Outbound call 2 unconnected unanswered.
|
|
12392
13238
|
|
|
12393
|
-
Outgoing call
|
|
13239
|
+
Outgoing call 108 restrictedCallee the callee is restricted due to high risk.
|
|
12394
13240
|
|
|
12395
|
-
|
|
13241
|
+
Outbound call 109 too many requests outbound over-frequency limit.
|
|
12396
13242
|
|
|
12397
|
-
Outgoing call
|
|
13243
|
+
Outgoing call 110 restrictedArea valid values for the area where outgoing calls are restricted.
|
|
12398
13244
|
|
|
12399
|
-
|
|
13245
|
+
Outbound call 111 restrictedTime outgoing call time limit.
|
|
12400
13246
|
|
|
12401
|
-
|
|
13247
|
+
Outbound call 201 unknown unknown status.
|
|
12402
13248
|
|
|
12403
|
-
Outgoing call
|
|
13249
|
+
Outgoing call 202 not answered the callee did not answer.
|
|
12404
13250
|
|
|
12405
|
-
Outgoing call
|
|
13251
|
+
Outgoing call 203 userReject callee rejects and hangs up.
|
|
12406
13252
|
|
|
12407
|
-
|
|
13253
|
+
Outbound call 204 powerOff callee is powered off.
|
|
12408
13254
|
|
|
12409
|
-
|
|
13255
|
+
Outbound call 205 number does not exist the callee's number is non - existent.
|
|
12410
13256
|
|
|
12411
|
-
|
|
13257
|
+
Outbound call 206 busy callee is busy.
|
|
12412
13258
|
|
|
12413
|
-
|
|
13259
|
+
Outbound call 207 arrears callee in arrears.
|
|
12414
13260
|
|
|
12415
|
-
|
|
13261
|
+
Outbound call 208 operator channel exception.
|
|
12416
13262
|
|
|
12417
|
-
|
|
13263
|
+
Outbound call 209 callerCancel call cancellation by the caller.
|
|
12418
13264
|
|
|
12419
|
-
Outgoing call
|
|
13265
|
+
Outgoing call 210 notInService callee out of service area.
|
|
12420
13266
|
|
|
12421
|
-
|
|
12422
|
-
|
|
13267
|
+
Incoming and outgoing calls 211 clientError client errors.
|
|
13268
|
+
Outbound call 212 carrier blocked.
|
|
12423
13269
|
:rtype: int
|
|
12424
13270
|
"""
|
|
12425
13271
|
return self._EndStatus
|
|
@@ -12540,60 +13386,60 @@ Outgoing call - 212 - carrierblocked - ISP blocking.
|
|
|
12540
13386
|
|
|
12541
13387
|
@property
|
|
12542
13388
|
def EndStatusString(self):
|
|
12543
|
-
"""EndStatus corresponds one-to-one with
|
|
13389
|
+
"""EndStatus corresponds one-to-one with EndStatusString. the specific enumeration is as follows:.
|
|
12544
13390
|
|
|
12545
|
-
**Scenario
|
|
13391
|
+
**Scenario EndStatus EndStatusString status description**.
|
|
12546
13392
|
|
|
12547
|
-
|
|
13393
|
+
Incoming and outgoing calls.
|
|
12548
13394
|
|
|
12549
|
-
|
|
13395
|
+
Incoming and outgoing calls 0 error exception termination.
|
|
12550
13396
|
|
|
12551
|
-
Inbound call
|
|
13397
|
+
Inbound call 102 ivrGiveUp user hang up during IVR.
|
|
12552
13398
|
|
|
12553
|
-
Inbound call
|
|
13399
|
+
Inbound call 103 waitingGiveUp user gives up while queuing.
|
|
12554
13400
|
|
|
12555
|
-
Inbound call
|
|
13401
|
+
Inbound call 104 ringingGiveUp user give up during ringing.
|
|
12556
13402
|
|
|
12557
|
-
Inbound call
|
|
13403
|
+
Inbound call 105 no agent online.
|
|
12558
13404
|
|
|
12559
|
-
Inbound call
|
|
13405
|
+
Inbound call 106 notWorkTime outside working hours.
|
|
12560
13406
|
|
|
12561
|
-
Inbound call
|
|
13407
|
+
Inbound call 107 ivrEnd ends after IVR.
|
|
12562
13408
|
|
|
12563
|
-
Inbound call
|
|
13409
|
+
Inbound call 100 blackList.
|
|
12564
13410
|
|
|
12565
|
-
|
|
13411
|
+
Outbound call 2 unconnected unanswered.
|
|
12566
13412
|
|
|
12567
|
-
Outgoing call
|
|
13413
|
+
Outgoing call 108 restrictedCallee the callee is restricted due to high risk.
|
|
12568
13414
|
|
|
12569
|
-
|
|
13415
|
+
Outbound call 109 too many requests outbound over-frequency limit.
|
|
12570
13416
|
|
|
12571
|
-
Outgoing call
|
|
13417
|
+
Outgoing call 110 restrictedArea valid values for the area where outgoing calls are restricted.
|
|
12572
13418
|
|
|
12573
|
-
|
|
13419
|
+
Outbound call 111 restrictedTime outgoing call time limit.
|
|
12574
13420
|
|
|
12575
|
-
Outgoing call
|
|
13421
|
+
Outgoing call 201 unknown unknown status.
|
|
12576
13422
|
|
|
12577
|
-
Outgoing call
|
|
13423
|
+
Outgoing call 202 notAnswer callee not answered.
|
|
12578
13424
|
|
|
12579
|
-
Outgoing call
|
|
13425
|
+
Outgoing call 203 userReject callee rejects and hangs up.
|
|
12580
13426
|
|
|
12581
|
-
|
|
13427
|
+
Outbound call 204 powerOff callee is powered off.
|
|
12582
13428
|
|
|
12583
|
-
|
|
13429
|
+
Outbound call 205 number does not exist the callee's number is non - existent.
|
|
12584
13430
|
|
|
12585
|
-
Outgoing call
|
|
13431
|
+
Outgoing call 206 busy callee is busy.
|
|
12586
13432
|
|
|
12587
|
-
|
|
13433
|
+
Outbound call 207 out of credit callee in arrears.
|
|
12588
13434
|
|
|
12589
|
-
|
|
13435
|
+
Outbound call 208 operator channel exception.
|
|
12590
13436
|
|
|
12591
|
-
Outgoing call
|
|
13437
|
+
Outgoing call 209 callerCancel call cancellation by the caller.
|
|
12592
13438
|
|
|
12593
|
-
Outgoing call
|
|
13439
|
+
Outgoing call 210 notInService callee out of service area.
|
|
12594
13440
|
|
|
12595
|
-
|
|
12596
|
-
|
|
13441
|
+
Incoming and outgoing calls 211 clientError client errors.
|
|
13442
|
+
Outbound call 212 carrier blocked.
|
|
12597
13443
|
:rtype: str
|
|
12598
13444
|
"""
|
|
12599
13445
|
return self._EndStatusString
|
|
@@ -12805,6 +13651,7 @@ No record (offline asr generation is not enabled or no package is available).
|
|
|
12805
13651
|
self._Callee = params.get("Callee")
|
|
12806
13652
|
self._Time = params.get("Time")
|
|
12807
13653
|
self._Direction = params.get("Direction")
|
|
13654
|
+
self._CallType = params.get("CallType")
|
|
12808
13655
|
self._Duration = params.get("Duration")
|
|
12809
13656
|
self._RecordURL = params.get("RecordURL")
|
|
12810
13657
|
self._RecordId = params.get("RecordId")
|
|
@@ -12865,6 +13712,151 @@ No record (offline asr generation is not enabled or no package is available).
|
|
|
12865
13712
|
|
|
12866
13713
|
|
|
12867
13714
|
|
|
13715
|
+
class TimeRange(AbstractModel):
|
|
13716
|
+
"""Time range, 24-hour system, format: 09:00:00.
|
|
13717
|
+
|
|
13718
|
+
"""
|
|
13719
|
+
|
|
13720
|
+
def __init__(self):
|
|
13721
|
+
r"""
|
|
13722
|
+
:param _StartTime: Start time.
|
|
13723
|
+
:type StartTime: str
|
|
13724
|
+
:param _EndTime: End time.
|
|
13725
|
+
:type EndTime: str
|
|
13726
|
+
"""
|
|
13727
|
+
self._StartTime = None
|
|
13728
|
+
self._EndTime = None
|
|
13729
|
+
|
|
13730
|
+
@property
|
|
13731
|
+
def StartTime(self):
|
|
13732
|
+
"""Start time.
|
|
13733
|
+
:rtype: str
|
|
13734
|
+
"""
|
|
13735
|
+
return self._StartTime
|
|
13736
|
+
|
|
13737
|
+
@StartTime.setter
|
|
13738
|
+
def StartTime(self, StartTime):
|
|
13739
|
+
self._StartTime = StartTime
|
|
13740
|
+
|
|
13741
|
+
@property
|
|
13742
|
+
def EndTime(self):
|
|
13743
|
+
"""End time.
|
|
13744
|
+
:rtype: str
|
|
13745
|
+
"""
|
|
13746
|
+
return self._EndTime
|
|
13747
|
+
|
|
13748
|
+
@EndTime.setter
|
|
13749
|
+
def EndTime(self, EndTime):
|
|
13750
|
+
self._EndTime = EndTime
|
|
13751
|
+
|
|
13752
|
+
|
|
13753
|
+
def _deserialize(self, params):
|
|
13754
|
+
self._StartTime = params.get("StartTime")
|
|
13755
|
+
self._EndTime = params.get("EndTime")
|
|
13756
|
+
memeber_set = set(params.keys())
|
|
13757
|
+
for name, value in vars(self).items():
|
|
13758
|
+
property_name = name[1:]
|
|
13759
|
+
if property_name in memeber_set:
|
|
13760
|
+
memeber_set.remove(property_name)
|
|
13761
|
+
if len(memeber_set) > 0:
|
|
13762
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
13763
|
+
|
|
13764
|
+
|
|
13765
|
+
|
|
13766
|
+
class TransferToManualRequest(AbstractModel):
|
|
13767
|
+
"""TransferToManual request structure.
|
|
13768
|
+
|
|
13769
|
+
"""
|
|
13770
|
+
|
|
13771
|
+
def __init__(self):
|
|
13772
|
+
r"""
|
|
13773
|
+
:param _SdkAppId: App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
13774
|
+
:type SdkAppId: int
|
|
13775
|
+
:param _SessionId: Session ID.
|
|
13776
|
+
:type SessionId: str
|
|
13777
|
+
:param _SkillGroupId: Skill group Id.
|
|
13778
|
+
:type SkillGroupId: int
|
|
13779
|
+
"""
|
|
13780
|
+
self._SdkAppId = None
|
|
13781
|
+
self._SessionId = None
|
|
13782
|
+
self._SkillGroupId = None
|
|
13783
|
+
|
|
13784
|
+
@property
|
|
13785
|
+
def SdkAppId(self):
|
|
13786
|
+
"""App ID (required), which can be viewed at https://console.cloud.tencent.com/ccc.
|
|
13787
|
+
:rtype: int
|
|
13788
|
+
"""
|
|
13789
|
+
return self._SdkAppId
|
|
13790
|
+
|
|
13791
|
+
@SdkAppId.setter
|
|
13792
|
+
def SdkAppId(self, SdkAppId):
|
|
13793
|
+
self._SdkAppId = SdkAppId
|
|
13794
|
+
|
|
13795
|
+
@property
|
|
13796
|
+
def SessionId(self):
|
|
13797
|
+
"""Session ID.
|
|
13798
|
+
:rtype: str
|
|
13799
|
+
"""
|
|
13800
|
+
return self._SessionId
|
|
13801
|
+
|
|
13802
|
+
@SessionId.setter
|
|
13803
|
+
def SessionId(self, SessionId):
|
|
13804
|
+
self._SessionId = SessionId
|
|
13805
|
+
|
|
13806
|
+
@property
|
|
13807
|
+
def SkillGroupId(self):
|
|
13808
|
+
"""Skill group Id.
|
|
13809
|
+
:rtype: int
|
|
13810
|
+
"""
|
|
13811
|
+
return self._SkillGroupId
|
|
13812
|
+
|
|
13813
|
+
@SkillGroupId.setter
|
|
13814
|
+
def SkillGroupId(self, SkillGroupId):
|
|
13815
|
+
self._SkillGroupId = SkillGroupId
|
|
13816
|
+
|
|
13817
|
+
|
|
13818
|
+
def _deserialize(self, params):
|
|
13819
|
+
self._SdkAppId = params.get("SdkAppId")
|
|
13820
|
+
self._SessionId = params.get("SessionId")
|
|
13821
|
+
self._SkillGroupId = params.get("SkillGroupId")
|
|
13822
|
+
memeber_set = set(params.keys())
|
|
13823
|
+
for name, value in vars(self).items():
|
|
13824
|
+
property_name = name[1:]
|
|
13825
|
+
if property_name in memeber_set:
|
|
13826
|
+
memeber_set.remove(property_name)
|
|
13827
|
+
if len(memeber_set) > 0:
|
|
13828
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
13829
|
+
|
|
13830
|
+
|
|
13831
|
+
|
|
13832
|
+
class TransferToManualResponse(AbstractModel):
|
|
13833
|
+
"""TransferToManual response structure.
|
|
13834
|
+
|
|
13835
|
+
"""
|
|
13836
|
+
|
|
13837
|
+
def __init__(self):
|
|
13838
|
+
r"""
|
|
13839
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
13840
|
+
:type RequestId: str
|
|
13841
|
+
"""
|
|
13842
|
+
self._RequestId = None
|
|
13843
|
+
|
|
13844
|
+
@property
|
|
13845
|
+
def RequestId(self):
|
|
13846
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
13847
|
+
:rtype: str
|
|
13848
|
+
"""
|
|
13849
|
+
return self._RequestId
|
|
13850
|
+
|
|
13851
|
+
@RequestId.setter
|
|
13852
|
+
def RequestId(self, RequestId):
|
|
13853
|
+
self._RequestId = RequestId
|
|
13854
|
+
|
|
13855
|
+
|
|
13856
|
+
def _deserialize(self, params):
|
|
13857
|
+
self._RequestId = params.get("RequestId")
|
|
13858
|
+
|
|
13859
|
+
|
|
12868
13860
|
class UnbindNumberCallOutSkillGroupRequest(AbstractModel):
|
|
12869
13861
|
"""UnbindNumberCallOutSkillGroup request structure.
|
|
12870
13862
|
|