tencentcloud-sdk-python-ccc 3.1.59__tar.gz → 3.1.85__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud/ccc/v20200210/models.py +896 -36
  5. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud_sdk_python_ccc.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ccc-3.1.85/tencentcloud_sdk_python_ccc.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ccc-3.1.59/tencentcloud_sdk_python_ccc.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud/ccc/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud/ccc/v20200210/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud/ccc/v20200210/ccc_client.py +0 -0
  13. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud/ccc/v20200210/ccc_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud/ccc/v20200210/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud_sdk_python_ccc.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud_sdk_python_ccc.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.85}/tencentcloud_sdk_python_ccc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ccc
3
- Version: 3.1.59
3
+ Version: 3.1.85
4
4
  Summary: Tencent Cloud Ccc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.59
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.85
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-ccc',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.59,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.85,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Ccc SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.59'
17
+ __version__ = '3.1.85'
@@ -1403,6 +1403,149 @@ class AutoCalloutTaskInfo(AbstractModel):
1403
1403
 
1404
1404
 
1405
1405
 
1406
+ class AvailableTimeConfig(AbstractModel):
1407
+ r"""工作时间配置
1408
+
1409
+ """
1410
+
1411
+ def __init__(self):
1412
+ r"""
1413
+ :param _DayType: <p>日期类型,默认为每天</p><p>枚举值:</p><ul><li>EveryDay: 每天</li><li>BusinessDay: 法定工作日</li><li>Holiday: 法定休息日</li><li>Custom: 自定义</li></ul>
1414
+ :type DayType: str
1415
+ :param _DaysOfWeek: <p>仅在 DayType 为 Custom 时生效,指定适用的星期几</p><p>枚举值:</p><ul><li>Monday: 星期一</li><li>Tuesday: 星期二</li><li>Wednesday: 星期三</li><li>Thursday: 星期四</li><li>Friday: 星期五</li><li>Saturday: 星期六</li><li>Sunday: 星期日</li></ul>
1416
+ :type DaysOfWeek: list of str
1417
+ :param _TimeRanges: <p>该日期类型下的时间段列表</p>
1418
+ :type TimeRanges: list of TimeRange
1419
+ """
1420
+ self._DayType = None
1421
+ self._DaysOfWeek = None
1422
+ self._TimeRanges = None
1423
+
1424
+ @property
1425
+ def DayType(self):
1426
+ r"""<p>日期类型,默认为每天</p><p>枚举值:</p><ul><li>EveryDay: 每天</li><li>BusinessDay: 法定工作日</li><li>Holiday: 法定休息日</li><li>Custom: 自定义</li></ul>
1427
+ :rtype: str
1428
+ """
1429
+ return self._DayType
1430
+
1431
+ @DayType.setter
1432
+ def DayType(self, DayType):
1433
+ self._DayType = DayType
1434
+
1435
+ @property
1436
+ def DaysOfWeek(self):
1437
+ r"""<p>仅在 DayType 为 Custom 时生效,指定适用的星期几</p><p>枚举值:</p><ul><li>Monday: 星期一</li><li>Tuesday: 星期二</li><li>Wednesday: 星期三</li><li>Thursday: 星期四</li><li>Friday: 星期五</li><li>Saturday: 星期六</li><li>Sunday: 星期日</li></ul>
1438
+ :rtype: list of str
1439
+ """
1440
+ return self._DaysOfWeek
1441
+
1442
+ @DaysOfWeek.setter
1443
+ def DaysOfWeek(self, DaysOfWeek):
1444
+ self._DaysOfWeek = DaysOfWeek
1445
+
1446
+ @property
1447
+ def TimeRanges(self):
1448
+ r"""<p>该日期类型下的时间段列表</p>
1449
+ :rtype: list of TimeRange
1450
+ """
1451
+ return self._TimeRanges
1452
+
1453
+ @TimeRanges.setter
1454
+ def TimeRanges(self, TimeRanges):
1455
+ self._TimeRanges = TimeRanges
1456
+
1457
+
1458
+ def _deserialize(self, params):
1459
+ self._DayType = params.get("DayType")
1460
+ self._DaysOfWeek = params.get("DaysOfWeek")
1461
+ if params.get("TimeRanges") is not None:
1462
+ self._TimeRanges = []
1463
+ for item in params.get("TimeRanges"):
1464
+ obj = TimeRange()
1465
+ obj._deserialize(item)
1466
+ self._TimeRanges.append(obj)
1467
+ memeber_set = set(params.keys())
1468
+ for name, value in vars(self).items():
1469
+ property_name = name[1:]
1470
+ if property_name in memeber_set:
1471
+ memeber_set.remove(property_name)
1472
+ if len(memeber_set) > 0:
1473
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1474
+
1475
+
1476
+
1477
+ class BasicAuth(AbstractModel):
1478
+ r"""basic 鉴权
1479
+
1480
+ """
1481
+
1482
+ def __init__(self):
1483
+ r"""
1484
+ :param _BasicToken:
1485
+ :type BasicToken: str
1486
+ """
1487
+ self._BasicToken = None
1488
+
1489
+ @property
1490
+ def BasicToken(self):
1491
+ r"""
1492
+ :rtype: str
1493
+ """
1494
+ return self._BasicToken
1495
+
1496
+ @BasicToken.setter
1497
+ def BasicToken(self, BasicToken):
1498
+ self._BasicToken = BasicToken
1499
+
1500
+
1501
+ def _deserialize(self, params):
1502
+ self._BasicToken = params.get("BasicToken")
1503
+ memeber_set = set(params.keys())
1504
+ for name, value in vars(self).items():
1505
+ property_name = name[1:]
1506
+ if property_name in memeber_set:
1507
+ memeber_set.remove(property_name)
1508
+ if len(memeber_set) > 0:
1509
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1510
+
1511
+
1512
+
1513
+ class BearerAuth(AbstractModel):
1514
+ r"""Bearer 鉴权
1515
+
1516
+ """
1517
+
1518
+ def __init__(self):
1519
+ r"""
1520
+ :param _BearerToken:
1521
+ :type BearerToken: str
1522
+ """
1523
+ self._BearerToken = None
1524
+
1525
+ @property
1526
+ def BearerToken(self):
1527
+ r"""
1528
+ :rtype: str
1529
+ """
1530
+ return self._BearerToken
1531
+
1532
+ @BearerToken.setter
1533
+ def BearerToken(self, BearerToken):
1534
+ self._BearerToken = BearerToken
1535
+
1536
+
1537
+ def _deserialize(self, params):
1538
+ self._BearerToken = params.get("BearerToken")
1539
+ memeber_set = set(params.keys())
1540
+ for name, value in vars(self).items():
1541
+ property_name = name[1:]
1542
+ if property_name in memeber_set:
1543
+ memeber_set.remove(property_name)
1544
+ if len(memeber_set) > 0:
1545
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1546
+
1547
+
1548
+
1406
1549
  class BindNumberCallInInterfaceRequest(AbstractModel):
1407
1550
  r"""BindNumberCallInInterface请求参数结构体
1408
1551
 
@@ -4512,40 +4655,48 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4512
4655
 
4513
4656
  def __init__(self):
4514
4657
  r"""
4515
- :param _SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
4658
+ :param _SdkAppId: <p>应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc</p>
4516
4659
  :type SdkAppId: int
4517
- :param _NotBefore: 任务起始时间戳,Unix 秒级时间戳
4660
+ :param _NotBefore: <p>任务起始时间戳,Unix 秒级时间戳</p>
4518
4661
  :type NotBefore: int
4519
- :param _Callees: 被叫号码列表
4662
+ :param _Callees: <p>被叫号码列表</p>
4520
4663
  :type Callees: list of str
4521
- :param _Callers: 主叫号码列表
4664
+ :param _Callers: <p>主叫号码列表</p>
4522
4665
  :type Callers: list of str
4523
- :param _IvrId: 呼叫使用的 IVR Id,不填时需要填写 AIAgentId
4666
+ :param _IvrId: <p>呼叫使用的 IVR Id,不填时需要填写 AIAgentId</p>
4524
4667
  :type IvrId: int
4525
- :param _Name: 任务名
4668
+ :param _Name: <p>任务名</p>
4526
4669
  :type Name: str
4527
- :param _Description: 任务描述
4670
+ :param _Description: <p>任务描述</p>
4528
4671
  :type Description: str
4529
- :param _NotAfter: 任务停止时间戳,Unix 秒级时间戳
4672
+ :param _NotAfter: <p>任务停止时间戳,Unix 秒级时间戳</p>
4530
4673
  :type NotAfter: int
4531
- :param _Tries: 最大尝试次数,1-3
4674
+ :param _Tries: <p>最大尝试次数,1-3 次</p>
4532
4675
  :type Tries: int
4533
- :param _Variables: 自定义变量(仅高级版支持),CalleeAttributes 字段中使用相同变量会覆盖此处
4676
+ :param _Variables: <p>自定义变量(仅高级版支持),CalleeAttributes 字段中使用相同变量会覆盖此处</p>
4534
4677
  :type Variables: list of Variable
4535
- :param _UUI: 用户自定义数据,CalleeAttributes 字段中使用 UUI 会覆盖此处
4678
+ :param _UUI: <p>用户自定义数据,CalleeAttributes 字段中使用 UUI 会覆盖此处</p>
4536
4679
  :type UUI: str
4537
- :param _CalleeAttributes: 被叫属性
4680
+ :param _CalleeAttributes: <p>被叫属性</p>
4538
4681
  :type CalleeAttributes: list of CalleeAttribute
4539
- :param _TimeZone: IANA 时区名称,参考 https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones
4682
+ :param _TimeZone: <p>IANA 时区名称,参考 https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones</p>
4540
4683
  :type TimeZone: str
4541
- :param _AvailableTime: 可用时间段
4684
+ :param _AvailableTime: <p>可用时间段</p>
4542
4685
  :type AvailableTime: list of TimeRange
4543
- :param _AIAgentId: 智能体 ID,不填写时需要填写 IvrId
4686
+ :param _AIAgentId: <p>智能体 ID,不填写时需要填写 IvrId</p>
4544
4687
  :type AIAgentId: int
4545
- :param _RetryInterval: 任务失败重试时间间隔,重试间隔 600秒~86400
4688
+ :param _RetryInterval: <p>任务失败重试时间间隔,重试间隔 600秒~86400 秒</p>
4546
4689
  :type RetryInterval: int
4547
- :param _MaxRingTimeoutSecond: 最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
4690
+ :param _MaxRingTimeoutSecond: <p>最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数</p>
4548
4691
  :type MaxRingTimeoutSecond: int
4692
+ :param _RetryHangupTypes: <p>根据限定的挂断原因(可选挂断状态码:202,203,204,205,206,207,208,210,212,213,215,216,217,218,219,221,222,234)进行重试,只对使用AIAgentID的任务有效,挂断状态码说明</p><p><a href="https://cloud.tencent.com/document/product/679/123938">详见</a></p>
4693
+ :type RetryHangupTypes: list of str
4694
+ :param _RetryTags: <p>根据限定的话后标签进行重试,只对使用对话模型的AIAgentID任务有效,标签信息可在智能体配置中查询</p>
4695
+ :type RetryTags: list of RetryTagItem
4696
+ :param _AvailableWorkTimeConfig: <p>生效的工作时间配置。建议使用此字段代替AvailableTime 字段,当同时使用时,优先生效AvailableTime。</p>
4697
+ :type AvailableWorkTimeConfig: list of AvailableTimeConfig
4698
+ :param _TriggerStrategy: <p>触发策略</p>
4699
+ :type TriggerStrategy: list of TriggerStrategyItem
4549
4700
  """
4550
4701
  self._SdkAppId = None
4551
4702
  self._NotBefore = None
@@ -4564,10 +4715,14 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4564
4715
  self._AIAgentId = None
4565
4716
  self._RetryInterval = None
4566
4717
  self._MaxRingTimeoutSecond = None
4718
+ self._RetryHangupTypes = None
4719
+ self._RetryTags = None
4720
+ self._AvailableWorkTimeConfig = None
4721
+ self._TriggerStrategy = None
4567
4722
 
4568
4723
  @property
4569
4724
  def SdkAppId(self):
4570
- r"""应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
4725
+ r"""<p>应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc</p>
4571
4726
  :rtype: int
4572
4727
  """
4573
4728
  return self._SdkAppId
@@ -4578,7 +4733,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4578
4733
 
4579
4734
  @property
4580
4735
  def NotBefore(self):
4581
- r"""任务起始时间戳,Unix 秒级时间戳
4736
+ r"""<p>任务起始时间戳,Unix 秒级时间戳</p>
4582
4737
  :rtype: int
4583
4738
  """
4584
4739
  return self._NotBefore
@@ -4589,7 +4744,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4589
4744
 
4590
4745
  @property
4591
4746
  def Callees(self):
4592
- r"""被叫号码列表
4747
+ r"""<p>被叫号码列表</p>
4593
4748
  :rtype: list of str
4594
4749
  """
4595
4750
  return self._Callees
@@ -4600,7 +4755,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4600
4755
 
4601
4756
  @property
4602
4757
  def Callers(self):
4603
- r"""主叫号码列表
4758
+ r"""<p>主叫号码列表</p>
4604
4759
  :rtype: list of str
4605
4760
  """
4606
4761
  return self._Callers
@@ -4611,7 +4766,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4611
4766
 
4612
4767
  @property
4613
4768
  def IvrId(self):
4614
- r"""呼叫使用的 IVR Id,不填时需要填写 AIAgentId
4769
+ r"""<p>呼叫使用的 IVR Id,不填时需要填写 AIAgentId</p>
4615
4770
  :rtype: int
4616
4771
  """
4617
4772
  return self._IvrId
@@ -4622,7 +4777,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4622
4777
 
4623
4778
  @property
4624
4779
  def Name(self):
4625
- r"""任务名
4780
+ r"""<p>任务名</p>
4626
4781
  :rtype: str
4627
4782
  """
4628
4783
  return self._Name
@@ -4633,7 +4788,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4633
4788
 
4634
4789
  @property
4635
4790
  def Description(self):
4636
- r"""任务描述
4791
+ r"""<p>任务描述</p>
4637
4792
  :rtype: str
4638
4793
  """
4639
4794
  return self._Description
@@ -4644,7 +4799,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4644
4799
 
4645
4800
  @property
4646
4801
  def NotAfter(self):
4647
- r"""任务停止时间戳,Unix 秒级时间戳
4802
+ r"""<p>任务停止时间戳,Unix 秒级时间戳</p>
4648
4803
  :rtype: int
4649
4804
  """
4650
4805
  return self._NotAfter
@@ -4655,7 +4810,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4655
4810
 
4656
4811
  @property
4657
4812
  def Tries(self):
4658
- r"""最大尝试次数,1-3
4813
+ r"""<p>最大尝试次数,1-3 次</p>
4659
4814
  :rtype: int
4660
4815
  """
4661
4816
  return self._Tries
@@ -4666,7 +4821,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4666
4821
 
4667
4822
  @property
4668
4823
  def Variables(self):
4669
- r"""自定义变量(仅高级版支持),CalleeAttributes 字段中使用相同变量会覆盖此处
4824
+ r"""<p>自定义变量(仅高级版支持),CalleeAttributes 字段中使用相同变量会覆盖此处</p>
4670
4825
  :rtype: list of Variable
4671
4826
  """
4672
4827
  return self._Variables
@@ -4677,7 +4832,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4677
4832
 
4678
4833
  @property
4679
4834
  def UUI(self):
4680
- r"""用户自定义数据,CalleeAttributes 字段中使用 UUI 会覆盖此处
4835
+ r"""<p>用户自定义数据,CalleeAttributes 字段中使用 UUI 会覆盖此处</p>
4681
4836
  :rtype: str
4682
4837
  """
4683
4838
  return self._UUI
@@ -4688,7 +4843,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4688
4843
 
4689
4844
  @property
4690
4845
  def CalleeAttributes(self):
4691
- r"""被叫属性
4846
+ r"""<p>被叫属性</p>
4692
4847
  :rtype: list of CalleeAttribute
4693
4848
  """
4694
4849
  return self._CalleeAttributes
@@ -4699,7 +4854,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4699
4854
 
4700
4855
  @property
4701
4856
  def TimeZone(self):
4702
- r"""IANA 时区名称,参考 https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones
4857
+ r"""<p>IANA 时区名称,参考 https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones</p>
4703
4858
  :rtype: str
4704
4859
  """
4705
4860
  return self._TimeZone
@@ -4710,7 +4865,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4710
4865
 
4711
4866
  @property
4712
4867
  def AvailableTime(self):
4713
- r"""可用时间段
4868
+ r"""<p>可用时间段</p>
4714
4869
  :rtype: list of TimeRange
4715
4870
  """
4716
4871
  return self._AvailableTime
@@ -4721,7 +4876,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4721
4876
 
4722
4877
  @property
4723
4878
  def AIAgentId(self):
4724
- r"""智能体 ID,不填写时需要填写 IvrId
4879
+ r"""<p>智能体 ID,不填写时需要填写 IvrId</p>
4725
4880
  :rtype: int
4726
4881
  """
4727
4882
  return self._AIAgentId
@@ -4732,7 +4887,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4732
4887
 
4733
4888
  @property
4734
4889
  def RetryInterval(self):
4735
- r"""任务失败重试时间间隔,重试间隔 600秒~86400
4890
+ r"""<p>任务失败重试时间间隔,重试间隔 600秒~86400 秒</p>
4736
4891
  :rtype: int
4737
4892
  """
4738
4893
  return self._RetryInterval
@@ -4743,7 +4898,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4743
4898
 
4744
4899
  @property
4745
4900
  def MaxRingTimeoutSecond(self):
4746
- r"""最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数
4901
+ r"""<p>最大振铃时长,达到时长阈值自动挂断。 仅自携号码支持当前参数</p>
4747
4902
  :rtype: int
4748
4903
  """
4749
4904
  return self._MaxRingTimeoutSecond
@@ -4752,6 +4907,50 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4752
4907
  def MaxRingTimeoutSecond(self, MaxRingTimeoutSecond):
4753
4908
  self._MaxRingTimeoutSecond = MaxRingTimeoutSecond
4754
4909
 
4910
+ @property
4911
+ def RetryHangupTypes(self):
4912
+ r"""<p>根据限定的挂断原因(可选挂断状态码:202,203,204,205,206,207,208,210,212,213,215,216,217,218,219,221,222,234)进行重试,只对使用AIAgentID的任务有效,挂断状态码说明</p><p><a href="https://cloud.tencent.com/document/product/679/123938">详见</a></p>
4913
+ :rtype: list of str
4914
+ """
4915
+ return self._RetryHangupTypes
4916
+
4917
+ @RetryHangupTypes.setter
4918
+ def RetryHangupTypes(self, RetryHangupTypes):
4919
+ self._RetryHangupTypes = RetryHangupTypes
4920
+
4921
+ @property
4922
+ def RetryTags(self):
4923
+ r"""<p>根据限定的话后标签进行重试,只对使用对话模型的AIAgentID任务有效,标签信息可在智能体配置中查询</p>
4924
+ :rtype: list of RetryTagItem
4925
+ """
4926
+ return self._RetryTags
4927
+
4928
+ @RetryTags.setter
4929
+ def RetryTags(self, RetryTags):
4930
+ self._RetryTags = RetryTags
4931
+
4932
+ @property
4933
+ def AvailableWorkTimeConfig(self):
4934
+ r"""<p>生效的工作时间配置。建议使用此字段代替AvailableTime 字段,当同时使用时,优先生效AvailableTime。</p>
4935
+ :rtype: list of AvailableTimeConfig
4936
+ """
4937
+ return self._AvailableWorkTimeConfig
4938
+
4939
+ @AvailableWorkTimeConfig.setter
4940
+ def AvailableWorkTimeConfig(self, AvailableWorkTimeConfig):
4941
+ self._AvailableWorkTimeConfig = AvailableWorkTimeConfig
4942
+
4943
+ @property
4944
+ def TriggerStrategy(self):
4945
+ r"""<p>触发策略</p>
4946
+ :rtype: list of TriggerStrategyItem
4947
+ """
4948
+ return self._TriggerStrategy
4949
+
4950
+ @TriggerStrategy.setter
4951
+ def TriggerStrategy(self, TriggerStrategy):
4952
+ self._TriggerStrategy = TriggerStrategy
4953
+
4755
4954
 
4756
4955
  def _deserialize(self, params):
4757
4956
  self._SdkAppId = params.get("SdkAppId")
@@ -4786,6 +4985,25 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
4786
4985
  self._AIAgentId = params.get("AIAgentId")
4787
4986
  self._RetryInterval = params.get("RetryInterval")
4788
4987
  self._MaxRingTimeoutSecond = params.get("MaxRingTimeoutSecond")
4988
+ self._RetryHangupTypes = params.get("RetryHangupTypes")
4989
+ if params.get("RetryTags") is not None:
4990
+ self._RetryTags = []
4991
+ for item in params.get("RetryTags"):
4992
+ obj = RetryTagItem()
4993
+ obj._deserialize(item)
4994
+ self._RetryTags.append(obj)
4995
+ if params.get("AvailableWorkTimeConfig") is not None:
4996
+ self._AvailableWorkTimeConfig = []
4997
+ for item in params.get("AvailableWorkTimeConfig"):
4998
+ obj = AvailableTimeConfig()
4999
+ obj._deserialize(item)
5000
+ self._AvailableWorkTimeConfig.append(obj)
5001
+ if params.get("TriggerStrategy") is not None:
5002
+ self._TriggerStrategy = []
5003
+ for item in params.get("TriggerStrategy"):
5004
+ obj = TriggerStrategyItem()
5005
+ obj._deserialize(item)
5006
+ self._TriggerStrategy.append(obj)
4789
5007
  memeber_set = set(params.keys())
4790
5008
  for name, value in vars(self).items():
4791
5009
  property_name = name[1:]
@@ -4803,7 +5021,7 @@ class CreateAutoCalloutTaskResponse(AbstractModel):
4803
5021
 
4804
5022
  def __init__(self):
4805
5023
  r"""
4806
- :param _TaskId: 任务Id
5024
+ :param _TaskId: <p>任务Id</p>
4807
5025
  :type TaskId: int
4808
5026
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4809
5027
  :type RequestId: str
@@ -4813,7 +5031,7 @@ class CreateAutoCalloutTaskResponse(AbstractModel):
4813
5031
 
4814
5032
  @property
4815
5033
  def TaskId(self):
4816
- r"""任务Id
5034
+ r"""<p>任务Id</p>
4817
5035
  :rtype: int
4818
5036
  """
4819
5037
  return self._TaskId
@@ -5675,6 +5893,12 @@ class CreateOwnNumberApplyRequest(AbstractModel):
5675
5893
  :type MobileNddPrefix: str
5676
5894
  :param _LocalNumberTrimAC: 同市固话去掉区号
5677
5895
  :type LocalNumberTrimAC: bool
5896
+ :param _CalleeFormatPassthrough: 被叫格式透传 (完成透传用户输入,不做处理)
5897
+ :type CalleeFormatPassthrough: bool
5898
+ :param _CallerFormatPassthrough: 主叫格式透传 (完成透传用户输入,不做处理)
5899
+ :type CallerFormatPassthrough: bool
5900
+ :param _InternationalNumberPrefix: 国际长途前缀码
5901
+ :type InternationalNumberPrefix: str
5678
5902
  """
5679
5903
  self._SdkAppId = None
5680
5904
  self._SipTrunkId = None
@@ -5682,6 +5906,9 @@ class CreateOwnNumberApplyRequest(AbstractModel):
5682
5906
  self._Prefix = None
5683
5907
  self._MobileNddPrefix = None
5684
5908
  self._LocalNumberTrimAC = None
5909
+ self._CalleeFormatPassthrough = None
5910
+ self._CallerFormatPassthrough = None
5911
+ self._InternationalNumberPrefix = None
5685
5912
 
5686
5913
  @property
5687
5914
  def SdkAppId(self):
@@ -5749,6 +5976,39 @@ class CreateOwnNumberApplyRequest(AbstractModel):
5749
5976
  def LocalNumberTrimAC(self, LocalNumberTrimAC):
5750
5977
  self._LocalNumberTrimAC = LocalNumberTrimAC
5751
5978
 
5979
+ @property
5980
+ def CalleeFormatPassthrough(self):
5981
+ r"""被叫格式透传 (完成透传用户输入,不做处理)
5982
+ :rtype: bool
5983
+ """
5984
+ return self._CalleeFormatPassthrough
5985
+
5986
+ @CalleeFormatPassthrough.setter
5987
+ def CalleeFormatPassthrough(self, CalleeFormatPassthrough):
5988
+ self._CalleeFormatPassthrough = CalleeFormatPassthrough
5989
+
5990
+ @property
5991
+ def CallerFormatPassthrough(self):
5992
+ r"""主叫格式透传 (完成透传用户输入,不做处理)
5993
+ :rtype: bool
5994
+ """
5995
+ return self._CallerFormatPassthrough
5996
+
5997
+ @CallerFormatPassthrough.setter
5998
+ def CallerFormatPassthrough(self, CallerFormatPassthrough):
5999
+ self._CallerFormatPassthrough = CallerFormatPassthrough
6000
+
6001
+ @property
6002
+ def InternationalNumberPrefix(self):
6003
+ r"""国际长途前缀码
6004
+ :rtype: str
6005
+ """
6006
+ return self._InternationalNumberPrefix
6007
+
6008
+ @InternationalNumberPrefix.setter
6009
+ def InternationalNumberPrefix(self, InternationalNumberPrefix):
6010
+ self._InternationalNumberPrefix = InternationalNumberPrefix
6011
+
5752
6012
 
5753
6013
  def _deserialize(self, params):
5754
6014
  self._SdkAppId = params.get("SdkAppId")
@@ -5762,6 +6022,9 @@ class CreateOwnNumberApplyRequest(AbstractModel):
5762
6022
  self._Prefix = params.get("Prefix")
5763
6023
  self._MobileNddPrefix = params.get("MobileNddPrefix")
5764
6024
  self._LocalNumberTrimAC = params.get("LocalNumberTrimAC")
6025
+ self._CalleeFormatPassthrough = params.get("CalleeFormatPassthrough")
6026
+ self._CallerFormatPassthrough = params.get("CallerFormatPassthrough")
6027
+ self._InternationalNumberPrefix = params.get("InternationalNumberPrefix")
5765
6028
  memeber_set = set(params.keys())
5766
6029
  for name, value in vars(self).items():
5767
6030
  property_name = name[1:]
@@ -13937,6 +14200,317 @@ class HangUpCallResponse(AbstractModel):
13937
14200
  self._RequestId = params.get("RequestId")
13938
14201
 
13939
14202
 
14203
+ class HeaderParams(AbstractModel):
14204
+ r"""http header 参数
14205
+
14206
+ """
14207
+
14208
+ def __init__(self):
14209
+ r"""
14210
+ :param _Key:
14211
+ :type Key: str
14212
+ :param _Value:
14213
+ :type Value: str
14214
+ """
14215
+ self._Key = None
14216
+ self._Value = None
14217
+
14218
+ @property
14219
+ def Key(self):
14220
+ r"""
14221
+ :rtype: str
14222
+ """
14223
+ return self._Key
14224
+
14225
+ @Key.setter
14226
+ def Key(self, Key):
14227
+ self._Key = Key
14228
+
14229
+ @property
14230
+ def Value(self):
14231
+ r"""
14232
+ :rtype: str
14233
+ """
14234
+ return self._Value
14235
+
14236
+ @Value.setter
14237
+ def Value(self, Value):
14238
+ self._Value = Value
14239
+
14240
+
14241
+ def _deserialize(self, params):
14242
+ self._Key = params.get("Key")
14243
+ self._Value = params.get("Value")
14244
+ memeber_set = set(params.keys())
14245
+ for name, value in vars(self).items():
14246
+ property_name = name[1:]
14247
+ if property_name in memeber_set:
14248
+ memeber_set.remove(property_name)
14249
+ if len(memeber_set) > 0:
14250
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
14251
+
14252
+
14253
+
14254
+ class HttpCallbackConfig(AbstractModel):
14255
+ r"""http 回调包体参数
14256
+
14257
+ """
14258
+
14259
+ def __init__(self):
14260
+ r"""
14261
+ :param _Url: <p>http 标准 url</p>
14262
+ :type Url: str
14263
+ :param _HeaderParams: <p>http header 参数</p>
14264
+ :type HeaderParams: list of HeaderParams
14265
+ :param _Params: <p>http 请求包参数</p>
14266
+ :type Params: list of HttpParams
14267
+ :param _Returns: <p>对端输出值,由对端 url 返回的 json 包里包含该字段就行</p>
14268
+ :type Returns: list of ReturnKey
14269
+ :param _Async: <p>是否异步</p>
14270
+ :type Async: bool
14271
+ :param _AuthType: <p>是否鉴权</p><p>枚举值:</p><ul><li>0: 不开启鉴权</li><li>1: 启用鉴权</li></ul>
14272
+ :type AuthType: int
14273
+ :param _BasicAuth: <p>basic token 鉴权</p>
14274
+ :type BasicAuth: :class:`tencentcloud.ccc.v20200210.models.BasicAuth`
14275
+ :param _BearerAuth: <p>bearer token 鉴权</p>
14276
+ :type BearerAuth: :class:`tencentcloud.ccc.v20200210.models.BearerAuth`
14277
+ :param _CustomAuth: <p>自定义鉴权</p>
14278
+ :type CustomAuth: :class:`tencentcloud.ccc.v20200210.models.HttpParams`
14279
+ :param _Oauth2Auth: <p>oauth2 鉴权</p>
14280
+ :type Oauth2Auth: :class:`tencentcloud.ccc.v20200210.models.OauthConfig`
14281
+ """
14282
+ self._Url = None
14283
+ self._HeaderParams = None
14284
+ self._Params = None
14285
+ self._Returns = None
14286
+ self._Async = None
14287
+ self._AuthType = None
14288
+ self._BasicAuth = None
14289
+ self._BearerAuth = None
14290
+ self._CustomAuth = None
14291
+ self._Oauth2Auth = None
14292
+
14293
+ @property
14294
+ def Url(self):
14295
+ r"""<p>http 标准 url</p>
14296
+ :rtype: str
14297
+ """
14298
+ return self._Url
14299
+
14300
+ @Url.setter
14301
+ def Url(self, Url):
14302
+ self._Url = Url
14303
+
14304
+ @property
14305
+ def HeaderParams(self):
14306
+ r"""<p>http header 参数</p>
14307
+ :rtype: list of HeaderParams
14308
+ """
14309
+ return self._HeaderParams
14310
+
14311
+ @HeaderParams.setter
14312
+ def HeaderParams(self, HeaderParams):
14313
+ self._HeaderParams = HeaderParams
14314
+
14315
+ @property
14316
+ def Params(self):
14317
+ r"""<p>http 请求包参数</p>
14318
+ :rtype: list of HttpParams
14319
+ """
14320
+ return self._Params
14321
+
14322
+ @Params.setter
14323
+ def Params(self, Params):
14324
+ self._Params = Params
14325
+
14326
+ @property
14327
+ def Returns(self):
14328
+ r"""<p>对端输出值,由对端 url 返回的 json 包里包含该字段就行</p>
14329
+ :rtype: list of ReturnKey
14330
+ """
14331
+ return self._Returns
14332
+
14333
+ @Returns.setter
14334
+ def Returns(self, Returns):
14335
+ self._Returns = Returns
14336
+
14337
+ @property
14338
+ def Async(self):
14339
+ r"""<p>是否异步</p>
14340
+ :rtype: bool
14341
+ """
14342
+ return self._Async
14343
+
14344
+ @Async.setter
14345
+ def Async(self, Async):
14346
+ self._Async = Async
14347
+
14348
+ @property
14349
+ def AuthType(self):
14350
+ r"""<p>是否鉴权</p><p>枚举值:</p><ul><li>0: 不开启鉴权</li><li>1: 启用鉴权</li></ul>
14351
+ :rtype: int
14352
+ """
14353
+ return self._AuthType
14354
+
14355
+ @AuthType.setter
14356
+ def AuthType(self, AuthType):
14357
+ self._AuthType = AuthType
14358
+
14359
+ @property
14360
+ def BasicAuth(self):
14361
+ r"""<p>basic token 鉴权</p>
14362
+ :rtype: :class:`tencentcloud.ccc.v20200210.models.BasicAuth`
14363
+ """
14364
+ return self._BasicAuth
14365
+
14366
+ @BasicAuth.setter
14367
+ def BasicAuth(self, BasicAuth):
14368
+ self._BasicAuth = BasicAuth
14369
+
14370
+ @property
14371
+ def BearerAuth(self):
14372
+ r"""<p>bearer token 鉴权</p>
14373
+ :rtype: :class:`tencentcloud.ccc.v20200210.models.BearerAuth`
14374
+ """
14375
+ return self._BearerAuth
14376
+
14377
+ @BearerAuth.setter
14378
+ def BearerAuth(self, BearerAuth):
14379
+ self._BearerAuth = BearerAuth
14380
+
14381
+ @property
14382
+ def CustomAuth(self):
14383
+ r"""<p>自定义鉴权</p>
14384
+ :rtype: :class:`tencentcloud.ccc.v20200210.models.HttpParams`
14385
+ """
14386
+ return self._CustomAuth
14387
+
14388
+ @CustomAuth.setter
14389
+ def CustomAuth(self, CustomAuth):
14390
+ self._CustomAuth = CustomAuth
14391
+
14392
+ @property
14393
+ def Oauth2Auth(self):
14394
+ r"""<p>oauth2 鉴权</p>
14395
+ :rtype: :class:`tencentcloud.ccc.v20200210.models.OauthConfig`
14396
+ """
14397
+ return self._Oauth2Auth
14398
+
14399
+ @Oauth2Auth.setter
14400
+ def Oauth2Auth(self, Oauth2Auth):
14401
+ self._Oauth2Auth = Oauth2Auth
14402
+
14403
+
14404
+ def _deserialize(self, params):
14405
+ self._Url = params.get("Url")
14406
+ if params.get("HeaderParams") is not None:
14407
+ self._HeaderParams = []
14408
+ for item in params.get("HeaderParams"):
14409
+ obj = HeaderParams()
14410
+ obj._deserialize(item)
14411
+ self._HeaderParams.append(obj)
14412
+ if params.get("Params") is not None:
14413
+ self._Params = []
14414
+ for item in params.get("Params"):
14415
+ obj = HttpParams()
14416
+ obj._deserialize(item)
14417
+ self._Params.append(obj)
14418
+ if params.get("Returns") is not None:
14419
+ self._Returns = []
14420
+ for item in params.get("Returns"):
14421
+ obj = ReturnKey()
14422
+ obj._deserialize(item)
14423
+ self._Returns.append(obj)
14424
+ self._Async = params.get("Async")
14425
+ self._AuthType = params.get("AuthType")
14426
+ if params.get("BasicAuth") is not None:
14427
+ self._BasicAuth = BasicAuth()
14428
+ self._BasicAuth._deserialize(params.get("BasicAuth"))
14429
+ if params.get("BearerAuth") is not None:
14430
+ self._BearerAuth = BearerAuth()
14431
+ self._BearerAuth._deserialize(params.get("BearerAuth"))
14432
+ if params.get("CustomAuth") is not None:
14433
+ self._CustomAuth = HttpParams()
14434
+ self._CustomAuth._deserialize(params.get("CustomAuth"))
14435
+ if params.get("Oauth2Auth") is not None:
14436
+ self._Oauth2Auth = OauthConfig()
14437
+ self._Oauth2Auth._deserialize(params.get("Oauth2Auth"))
14438
+ memeber_set = set(params.keys())
14439
+ for name, value in vars(self).items():
14440
+ property_name = name[1:]
14441
+ if property_name in memeber_set:
14442
+ memeber_set.remove(property_name)
14443
+ if len(memeber_set) > 0:
14444
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
14445
+
14446
+
14447
+
14448
+ class HttpParams(AbstractModel):
14449
+ r"""http 请求包体
14450
+
14451
+ """
14452
+
14453
+ def __init__(self):
14454
+ r"""
14455
+ :param _Key:
14456
+ :type Key: str
14457
+ :param _Value:
14458
+ :type Value: str
14459
+ :param _ValueType:
14460
+ :type ValueType: str
14461
+ """
14462
+ self._Key = None
14463
+ self._Value = None
14464
+ self._ValueType = None
14465
+
14466
+ @property
14467
+ def Key(self):
14468
+ r"""
14469
+ :rtype: str
14470
+ """
14471
+ return self._Key
14472
+
14473
+ @Key.setter
14474
+ def Key(self, Key):
14475
+ self._Key = Key
14476
+
14477
+ @property
14478
+ def Value(self):
14479
+ r"""
14480
+ :rtype: str
14481
+ """
14482
+ return self._Value
14483
+
14484
+ @Value.setter
14485
+ def Value(self, Value):
14486
+ self._Value = Value
14487
+
14488
+ @property
14489
+ def ValueType(self):
14490
+ r"""
14491
+ :rtype: str
14492
+ """
14493
+ return self._ValueType
14494
+
14495
+ @ValueType.setter
14496
+ def ValueType(self, ValueType):
14497
+ self._ValueType = ValueType
14498
+
14499
+
14500
+ def _deserialize(self, params):
14501
+ self._Key = params.get("Key")
14502
+ self._Value = params.get("Value")
14503
+ self._ValueType = params.get("ValueType")
14504
+ memeber_set = set(params.keys())
14505
+ for name, value in vars(self).items():
14506
+ property_name = name[1:]
14507
+ if property_name in memeber_set:
14508
+ memeber_set.remove(property_name)
14509
+ if len(memeber_set) > 0:
14510
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
14511
+
14512
+
14513
+
13940
14514
  class IMCdrInfo(AbstractModel):
13941
14515
  r"""文本会话服务记录信息
13942
14516
 
@@ -14755,6 +15329,12 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
14755
15329
  :type MobileNddPrefix: str
14756
15330
  :param _LocalNumberTrimAC: 同市固话去掉区号
14757
15331
  :type LocalNumberTrimAC: bool
15332
+ :param _CalleeFormatPassthrough: 被叫格式透传 (完成透传用户输入,不做处理)
15333
+ :type CalleeFormatPassthrough: bool
15334
+ :param _CallerFormatPassthrough: 主叫格式透传 (完成透传用户输入,不做处理)
15335
+ :type CallerFormatPassthrough: bool
15336
+ :param _InternationalNumberPrefix: 国际长途前缀码
15337
+ :type InternationalNumberPrefix: str
14758
15338
  """
14759
15339
  self._SdkAppId = None
14760
15340
  self._DetailList = None
@@ -14762,6 +15342,9 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
14762
15342
  self._Prefix = None
14763
15343
  self._MobileNddPrefix = None
14764
15344
  self._LocalNumberTrimAC = None
15345
+ self._CalleeFormatPassthrough = None
15346
+ self._CallerFormatPassthrough = None
15347
+ self._InternationalNumberPrefix = None
14765
15348
 
14766
15349
  @property
14767
15350
  def SdkAppId(self):
@@ -14829,6 +15412,39 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
14829
15412
  def LocalNumberTrimAC(self, LocalNumberTrimAC):
14830
15413
  self._LocalNumberTrimAC = LocalNumberTrimAC
14831
15414
 
15415
+ @property
15416
+ def CalleeFormatPassthrough(self):
15417
+ r"""被叫格式透传 (完成透传用户输入,不做处理)
15418
+ :rtype: bool
15419
+ """
15420
+ return self._CalleeFormatPassthrough
15421
+
15422
+ @CalleeFormatPassthrough.setter
15423
+ def CalleeFormatPassthrough(self, CalleeFormatPassthrough):
15424
+ self._CalleeFormatPassthrough = CalleeFormatPassthrough
15425
+
15426
+ @property
15427
+ def CallerFormatPassthrough(self):
15428
+ r"""主叫格式透传 (完成透传用户输入,不做处理)
15429
+ :rtype: bool
15430
+ """
15431
+ return self._CallerFormatPassthrough
15432
+
15433
+ @CallerFormatPassthrough.setter
15434
+ def CallerFormatPassthrough(self, CallerFormatPassthrough):
15435
+ self._CallerFormatPassthrough = CallerFormatPassthrough
15436
+
15437
+ @property
15438
+ def InternationalNumberPrefix(self):
15439
+ r"""国际长途前缀码
15440
+ :rtype: str
15441
+ """
15442
+ return self._InternationalNumberPrefix
15443
+
15444
+ @InternationalNumberPrefix.setter
15445
+ def InternationalNumberPrefix(self, InternationalNumberPrefix):
15446
+ self._InternationalNumberPrefix = InternationalNumberPrefix
15447
+
14832
15448
 
14833
15449
  def _deserialize(self, params):
14834
15450
  self._SdkAppId = params.get("SdkAppId")
@@ -14842,6 +15458,9 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
14842
15458
  self._Prefix = params.get("Prefix")
14843
15459
  self._MobileNddPrefix = params.get("MobileNddPrefix")
14844
15460
  self._LocalNumberTrimAC = params.get("LocalNumberTrimAC")
15461
+ self._CalleeFormatPassthrough = params.get("CalleeFormatPassthrough")
15462
+ self._CallerFormatPassthrough = params.get("CallerFormatPassthrough")
15463
+ self._InternationalNumberPrefix = params.get("InternationalNumberPrefix")
14845
15464
  memeber_set = set(params.keys())
14846
15465
  for name, value in vars(self).items():
14847
15466
  property_name = name[1:]
@@ -15271,6 +15890,72 @@ class NumberInfo(AbstractModel):
15271
15890
 
15272
15891
 
15273
15892
 
15893
+ class OauthConfig(AbstractModel):
15894
+ r"""Oauth2鉴权
15895
+
15896
+ """
15897
+
15898
+ def __init__(self):
15899
+ r"""
15900
+ :param _TokenURL:
15901
+ :type TokenURL: str
15902
+ :param _ClientId:
15903
+ :type ClientId: str
15904
+ :param _ClientSecret:
15905
+ :type ClientSecret: str
15906
+ """
15907
+ self._TokenURL = None
15908
+ self._ClientId = None
15909
+ self._ClientSecret = None
15910
+
15911
+ @property
15912
+ def TokenURL(self):
15913
+ r"""
15914
+ :rtype: str
15915
+ """
15916
+ return self._TokenURL
15917
+
15918
+ @TokenURL.setter
15919
+ def TokenURL(self, TokenURL):
15920
+ self._TokenURL = TokenURL
15921
+
15922
+ @property
15923
+ def ClientId(self):
15924
+ r"""
15925
+ :rtype: str
15926
+ """
15927
+ return self._ClientId
15928
+
15929
+ @ClientId.setter
15930
+ def ClientId(self, ClientId):
15931
+ self._ClientId = ClientId
15932
+
15933
+ @property
15934
+ def ClientSecret(self):
15935
+ r"""
15936
+ :rtype: str
15937
+ """
15938
+ return self._ClientSecret
15939
+
15940
+ @ClientSecret.setter
15941
+ def ClientSecret(self, ClientSecret):
15942
+ self._ClientSecret = ClientSecret
15943
+
15944
+
15945
+ def _deserialize(self, params):
15946
+ self._TokenURL = params.get("TokenURL")
15947
+ self._ClientId = params.get("ClientId")
15948
+ self._ClientSecret = params.get("ClientSecret")
15949
+ memeber_set = set(params.keys())
15950
+ for name, value in vars(self).items():
15951
+ property_name = name[1:]
15952
+ if property_name in memeber_set:
15953
+ memeber_set.remove(property_name)
15954
+ if len(memeber_set) > 0:
15955
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
15956
+
15957
+
15958
+
15274
15959
  class OwnNumberApplyDetailItem(AbstractModel):
15275
15960
  r"""用户自带号码审批明细数据类型
15276
15961
 
@@ -16674,6 +17359,93 @@ class ResumePredictiveDialingCampaignResponse(AbstractModel):
16674
17359
  self._RequestId = params.get("RequestId")
16675
17360
 
16676
17361
 
17362
+ class RetryTagItem(AbstractModel):
17363
+ r"""自动外呼限定重呼标签
17364
+
17365
+ """
17366
+
17367
+ def __init__(self):
17368
+ r"""
17369
+ :param _TagName: <p>标签名称</p>
17370
+ :type TagName: str
17371
+ :param _TagValue: <p>标签值</p>
17372
+ :type TagValue: str
17373
+ """
17374
+ self._TagName = None
17375
+ self._TagValue = None
17376
+
17377
+ @property
17378
+ def TagName(self):
17379
+ r"""<p>标签名称</p>
17380
+ :rtype: str
17381
+ """
17382
+ return self._TagName
17383
+
17384
+ @TagName.setter
17385
+ def TagName(self, TagName):
17386
+ self._TagName = TagName
17387
+
17388
+ @property
17389
+ def TagValue(self):
17390
+ r"""<p>标签值</p>
17391
+ :rtype: str
17392
+ """
17393
+ return self._TagValue
17394
+
17395
+ @TagValue.setter
17396
+ def TagValue(self, TagValue):
17397
+ self._TagValue = TagValue
17398
+
17399
+
17400
+ def _deserialize(self, params):
17401
+ self._TagName = params.get("TagName")
17402
+ self._TagValue = params.get("TagValue")
17403
+ memeber_set = set(params.keys())
17404
+ for name, value in vars(self).items():
17405
+ property_name = name[1:]
17406
+ if property_name in memeber_set:
17407
+ memeber_set.remove(property_name)
17408
+ if len(memeber_set) > 0:
17409
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
17410
+
17411
+
17412
+
17413
+ class ReturnKey(AbstractModel):
17414
+ r"""http return key
17415
+
17416
+ """
17417
+
17418
+ def __init__(self):
17419
+ r"""
17420
+ :param _Key:
17421
+ :type Key: str
17422
+ """
17423
+ self._Key = None
17424
+
17425
+ @property
17426
+ def Key(self):
17427
+ r"""
17428
+ :rtype: str
17429
+ """
17430
+ return self._Key
17431
+
17432
+ @Key.setter
17433
+ def Key(self, Key):
17434
+ self._Key = Key
17435
+
17436
+
17437
+ def _deserialize(self, params):
17438
+ self._Key = params.get("Key")
17439
+ memeber_set = set(params.keys())
17440
+ for name, value in vars(self).items():
17441
+ property_name = name[1:]
17442
+ if property_name in memeber_set:
17443
+ memeber_set.remove(property_name)
17444
+ if len(memeber_set) > 0:
17445
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
17446
+
17447
+
17448
+
16677
17449
  class SdkAppIdBuyInfo(AbstractModel):
16678
17450
  r"""应用购买信息
16679
17451
 
@@ -19945,6 +20717,94 @@ class TransferToManualResponse(AbstractModel):
19945
20717
  self._RequestId = params.get("RequestId")
19946
20718
 
19947
20719
 
20720
+ class TriggerStrategyItem(AbstractModel):
20721
+ r"""触发策略数组,每个策略里包含接口调用信息,挂断类型,通话标签,触发模式
20722
+
20723
+ """
20724
+
20725
+ def __init__(self):
20726
+ r"""
20727
+ :param _InterfaceConfig: <p>http 接口相关参数</p>
20728
+ :type InterfaceConfig: :class:`tencentcloud.ccc.v20200210.models.HttpCallbackConfig`
20729
+ :param _HangupTypes: <p>挂断类型</p>
20730
+ :type HangupTypes: list of str
20731
+ :param _CallTags: <p>通话标签</p>
20732
+ :type CallTags: list of RetryTagItem
20733
+ :param _TriggerMode: <p>触发模式</p><p>枚举值:</p><ul><li>ONCE_PER_NUMBER: 每个号码仅第一次命中条件时触发</li><li>ALWAYS_ON_MATCH: 每次命中条件均触发</li></ul>
20734
+ :type TriggerMode: str
20735
+ """
20736
+ self._InterfaceConfig = None
20737
+ self._HangupTypes = None
20738
+ self._CallTags = None
20739
+ self._TriggerMode = None
20740
+
20741
+ @property
20742
+ def InterfaceConfig(self):
20743
+ r"""<p>http 接口相关参数</p>
20744
+ :rtype: :class:`tencentcloud.ccc.v20200210.models.HttpCallbackConfig`
20745
+ """
20746
+ return self._InterfaceConfig
20747
+
20748
+ @InterfaceConfig.setter
20749
+ def InterfaceConfig(self, InterfaceConfig):
20750
+ self._InterfaceConfig = InterfaceConfig
20751
+
20752
+ @property
20753
+ def HangupTypes(self):
20754
+ r"""<p>挂断类型</p>
20755
+ :rtype: list of str
20756
+ """
20757
+ return self._HangupTypes
20758
+
20759
+ @HangupTypes.setter
20760
+ def HangupTypes(self, HangupTypes):
20761
+ self._HangupTypes = HangupTypes
20762
+
20763
+ @property
20764
+ def CallTags(self):
20765
+ r"""<p>通话标签</p>
20766
+ :rtype: list of RetryTagItem
20767
+ """
20768
+ return self._CallTags
20769
+
20770
+ @CallTags.setter
20771
+ def CallTags(self, CallTags):
20772
+ self._CallTags = CallTags
20773
+
20774
+ @property
20775
+ def TriggerMode(self):
20776
+ r"""<p>触发模式</p><p>枚举值:</p><ul><li>ONCE_PER_NUMBER: 每个号码仅第一次命中条件时触发</li><li>ALWAYS_ON_MATCH: 每次命中条件均触发</li></ul>
20777
+ :rtype: str
20778
+ """
20779
+ return self._TriggerMode
20780
+
20781
+ @TriggerMode.setter
20782
+ def TriggerMode(self, TriggerMode):
20783
+ self._TriggerMode = TriggerMode
20784
+
20785
+
20786
+ def _deserialize(self, params):
20787
+ if params.get("InterfaceConfig") is not None:
20788
+ self._InterfaceConfig = HttpCallbackConfig()
20789
+ self._InterfaceConfig._deserialize(params.get("InterfaceConfig"))
20790
+ self._HangupTypes = params.get("HangupTypes")
20791
+ if params.get("CallTags") is not None:
20792
+ self._CallTags = []
20793
+ for item in params.get("CallTags"):
20794
+ obj = RetryTagItem()
20795
+ obj._deserialize(item)
20796
+ self._CallTags.append(obj)
20797
+ self._TriggerMode = params.get("TriggerMode")
20798
+ memeber_set = set(params.keys())
20799
+ for name, value in vars(self).items():
20800
+ property_name = name[1:]
20801
+ if property_name in memeber_set:
20802
+ memeber_set.remove(property_name)
20803
+ if len(memeber_set) > 0:
20804
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
20805
+
20806
+
20807
+
19948
20808
  class UnbindNumberCallOutSkillGroupRequest(AbstractModel):
19949
20809
  r"""UnbindNumberCallOutSkillGroup请求参数结构体
19950
20810
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ccc
3
- Version: 3.1.59
3
+ Version: 3.1.85
4
4
  Summary: Tencent Cloud Ccc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.59
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.85
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.85
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.59