tencentcloud-sdk-python-ccc 3.1.52__tar.gz → 3.1.72__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.
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/setup.py +1 -1
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/models.py +150 -30
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud_sdk_python_ccc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ccc-3.1.72/tencentcloud_sdk_python_ccc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ccc-3.1.52/tencentcloud_sdk_python_ccc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/README.rst +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/__init__.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/__init__.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/ccc_client.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/ccc_client_async.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud_sdk_python_ccc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud_sdk_python_ccc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ccc-3.1.52 → tencentcloud_sdk_python_ccc-3.1.72}/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.
|
|
3
|
+
Version: 3.1.72
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.72
|
|
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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.72,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ccc SDK for Python',
|
|
@@ -341,13 +341,13 @@ class AICallExtractResultInfo(AbstractModel):
|
|
|
341
341
|
|
|
342
342
|
def __init__(self):
|
|
343
343
|
r"""
|
|
344
|
-
:param _Text:
|
|
344
|
+
:param _Text: <p>提取的类型是文本</p>
|
|
345
345
|
:type Text: str
|
|
346
|
-
:param _Chosen:
|
|
346
|
+
:param _Chosen: <p>提取的类型是选项</p>
|
|
347
347
|
:type Chosen: list of str
|
|
348
|
-
:param _Boolean:
|
|
348
|
+
:param _Boolean: <p>提取类型是布尔值</p>
|
|
349
349
|
:type Boolean: bool
|
|
350
|
-
:param _Number:
|
|
350
|
+
:param _Number: <p>提取类型是数字</p>
|
|
351
351
|
:type Number: float
|
|
352
352
|
"""
|
|
353
353
|
self._Text = None
|
|
@@ -357,7 +357,7 @@ class AICallExtractResultInfo(AbstractModel):
|
|
|
357
357
|
|
|
358
358
|
@property
|
|
359
359
|
def Text(self):
|
|
360
|
-
r"""
|
|
360
|
+
r"""<p>提取的类型是文本</p>
|
|
361
361
|
:rtype: str
|
|
362
362
|
"""
|
|
363
363
|
return self._Text
|
|
@@ -368,7 +368,7 @@ class AICallExtractResultInfo(AbstractModel):
|
|
|
368
368
|
|
|
369
369
|
@property
|
|
370
370
|
def Chosen(self):
|
|
371
|
-
r"""
|
|
371
|
+
r"""<p>提取的类型是选项</p>
|
|
372
372
|
:rtype: list of str
|
|
373
373
|
"""
|
|
374
374
|
return self._Chosen
|
|
@@ -379,7 +379,7 @@ class AICallExtractResultInfo(AbstractModel):
|
|
|
379
379
|
|
|
380
380
|
@property
|
|
381
381
|
def Boolean(self):
|
|
382
|
-
r"""
|
|
382
|
+
r"""<p>提取类型是布尔值</p>
|
|
383
383
|
:rtype: bool
|
|
384
384
|
"""
|
|
385
385
|
return self._Boolean
|
|
@@ -390,7 +390,7 @@ class AICallExtractResultInfo(AbstractModel):
|
|
|
390
390
|
|
|
391
391
|
@property
|
|
392
392
|
def Number(self):
|
|
393
|
-
r"""
|
|
393
|
+
r"""<p>提取类型是数字</p>
|
|
394
394
|
:rtype: float
|
|
395
395
|
"""
|
|
396
396
|
return self._Number
|
|
@@ -5675,6 +5675,12 @@ class CreateOwnNumberApplyRequest(AbstractModel):
|
|
|
5675
5675
|
:type MobileNddPrefix: str
|
|
5676
5676
|
:param _LocalNumberTrimAC: 同市固话去掉区号
|
|
5677
5677
|
:type LocalNumberTrimAC: bool
|
|
5678
|
+
:param _CalleeFormatPassthrough: 被叫格式透传 (完成透传用户输入,不做处理)
|
|
5679
|
+
:type CalleeFormatPassthrough: bool
|
|
5680
|
+
:param _CallerFormatPassthrough: 主叫格式透传 (完成透传用户输入,不做处理)
|
|
5681
|
+
:type CallerFormatPassthrough: bool
|
|
5682
|
+
:param _InternationalNumberPrefix: 国际长途前缀码
|
|
5683
|
+
:type InternationalNumberPrefix: str
|
|
5678
5684
|
"""
|
|
5679
5685
|
self._SdkAppId = None
|
|
5680
5686
|
self._SipTrunkId = None
|
|
@@ -5682,6 +5688,9 @@ class CreateOwnNumberApplyRequest(AbstractModel):
|
|
|
5682
5688
|
self._Prefix = None
|
|
5683
5689
|
self._MobileNddPrefix = None
|
|
5684
5690
|
self._LocalNumberTrimAC = None
|
|
5691
|
+
self._CalleeFormatPassthrough = None
|
|
5692
|
+
self._CallerFormatPassthrough = None
|
|
5693
|
+
self._InternationalNumberPrefix = None
|
|
5685
5694
|
|
|
5686
5695
|
@property
|
|
5687
5696
|
def SdkAppId(self):
|
|
@@ -5749,6 +5758,39 @@ class CreateOwnNumberApplyRequest(AbstractModel):
|
|
|
5749
5758
|
def LocalNumberTrimAC(self, LocalNumberTrimAC):
|
|
5750
5759
|
self._LocalNumberTrimAC = LocalNumberTrimAC
|
|
5751
5760
|
|
|
5761
|
+
@property
|
|
5762
|
+
def CalleeFormatPassthrough(self):
|
|
5763
|
+
r"""被叫格式透传 (完成透传用户输入,不做处理)
|
|
5764
|
+
:rtype: bool
|
|
5765
|
+
"""
|
|
5766
|
+
return self._CalleeFormatPassthrough
|
|
5767
|
+
|
|
5768
|
+
@CalleeFormatPassthrough.setter
|
|
5769
|
+
def CalleeFormatPassthrough(self, CalleeFormatPassthrough):
|
|
5770
|
+
self._CalleeFormatPassthrough = CalleeFormatPassthrough
|
|
5771
|
+
|
|
5772
|
+
@property
|
|
5773
|
+
def CallerFormatPassthrough(self):
|
|
5774
|
+
r"""主叫格式透传 (完成透传用户输入,不做处理)
|
|
5775
|
+
:rtype: bool
|
|
5776
|
+
"""
|
|
5777
|
+
return self._CallerFormatPassthrough
|
|
5778
|
+
|
|
5779
|
+
@CallerFormatPassthrough.setter
|
|
5780
|
+
def CallerFormatPassthrough(self, CallerFormatPassthrough):
|
|
5781
|
+
self._CallerFormatPassthrough = CallerFormatPassthrough
|
|
5782
|
+
|
|
5783
|
+
@property
|
|
5784
|
+
def InternationalNumberPrefix(self):
|
|
5785
|
+
r"""国际长途前缀码
|
|
5786
|
+
:rtype: str
|
|
5787
|
+
"""
|
|
5788
|
+
return self._InternationalNumberPrefix
|
|
5789
|
+
|
|
5790
|
+
@InternationalNumberPrefix.setter
|
|
5791
|
+
def InternationalNumberPrefix(self, InternationalNumberPrefix):
|
|
5792
|
+
self._InternationalNumberPrefix = InternationalNumberPrefix
|
|
5793
|
+
|
|
5752
5794
|
|
|
5753
5795
|
def _deserialize(self, params):
|
|
5754
5796
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -5762,6 +5804,9 @@ class CreateOwnNumberApplyRequest(AbstractModel):
|
|
|
5762
5804
|
self._Prefix = params.get("Prefix")
|
|
5763
5805
|
self._MobileNddPrefix = params.get("MobileNddPrefix")
|
|
5764
5806
|
self._LocalNumberTrimAC = params.get("LocalNumberTrimAC")
|
|
5807
|
+
self._CalleeFormatPassthrough = params.get("CalleeFormatPassthrough")
|
|
5808
|
+
self._CallerFormatPassthrough = params.get("CallerFormatPassthrough")
|
|
5809
|
+
self._InternationalNumberPrefix = params.get("InternationalNumberPrefix")
|
|
5765
5810
|
memeber_set = set(params.keys())
|
|
5766
5811
|
for name, value in vars(self).items():
|
|
5767
5812
|
property_name = name[1:]
|
|
@@ -6790,9 +6835,9 @@ class DeleteStaffRequest(AbstractModel):
|
|
|
6790
6835
|
|
|
6791
6836
|
def __init__(self):
|
|
6792
6837
|
r"""
|
|
6793
|
-
:param _SdkAppId:
|
|
6838
|
+
:param _SdkAppId: <p>应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc</p>
|
|
6794
6839
|
:type SdkAppId: int
|
|
6795
|
-
:param _StaffList:
|
|
6840
|
+
:param _StaffList: <p>待删除客服邮箱列表,一次最大支持200个。</p>
|
|
6796
6841
|
:type StaffList: list of str
|
|
6797
6842
|
"""
|
|
6798
6843
|
self._SdkAppId = None
|
|
@@ -6800,7 +6845,7 @@ class DeleteStaffRequest(AbstractModel):
|
|
|
6800
6845
|
|
|
6801
6846
|
@property
|
|
6802
6847
|
def SdkAppId(self):
|
|
6803
|
-
r"""
|
|
6848
|
+
r"""<p>应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc</p>
|
|
6804
6849
|
:rtype: int
|
|
6805
6850
|
"""
|
|
6806
6851
|
return self._SdkAppId
|
|
@@ -6811,7 +6856,7 @@ class DeleteStaffRequest(AbstractModel):
|
|
|
6811
6856
|
|
|
6812
6857
|
@property
|
|
6813
6858
|
def StaffList(self):
|
|
6814
|
-
r"""
|
|
6859
|
+
r"""<p>待删除客服邮箱列表,一次最大支持200个。</p>
|
|
6815
6860
|
:rtype: list of str
|
|
6816
6861
|
"""
|
|
6817
6862
|
return self._StaffList
|
|
@@ -6841,17 +6886,20 @@ class DeleteStaffResponse(AbstractModel):
|
|
|
6841
6886
|
|
|
6842
6887
|
def __init__(self):
|
|
6843
6888
|
r"""
|
|
6844
|
-
:param _OnlineStaffList:
|
|
6889
|
+
:param _OnlineStaffList: <p>无法删除的状态为在线的客服列表</p>
|
|
6845
6890
|
:type OnlineStaffList: list of str
|
|
6891
|
+
:param _DeleteStatusInfo: <p>坐席删除详情</p>
|
|
6892
|
+
:type DeleteStatusInfo: str
|
|
6846
6893
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6847
6894
|
:type RequestId: str
|
|
6848
6895
|
"""
|
|
6849
6896
|
self._OnlineStaffList = None
|
|
6897
|
+
self._DeleteStatusInfo = None
|
|
6850
6898
|
self._RequestId = None
|
|
6851
6899
|
|
|
6852
6900
|
@property
|
|
6853
6901
|
def OnlineStaffList(self):
|
|
6854
|
-
r"""
|
|
6902
|
+
r"""<p>无法删除的状态为在线的客服列表</p>
|
|
6855
6903
|
:rtype: list of str
|
|
6856
6904
|
"""
|
|
6857
6905
|
return self._OnlineStaffList
|
|
@@ -6860,6 +6908,17 @@ class DeleteStaffResponse(AbstractModel):
|
|
|
6860
6908
|
def OnlineStaffList(self, OnlineStaffList):
|
|
6861
6909
|
self._OnlineStaffList = OnlineStaffList
|
|
6862
6910
|
|
|
6911
|
+
@property
|
|
6912
|
+
def DeleteStatusInfo(self):
|
|
6913
|
+
r"""<p>坐席删除详情</p>
|
|
6914
|
+
:rtype: str
|
|
6915
|
+
"""
|
|
6916
|
+
return self._DeleteStatusInfo
|
|
6917
|
+
|
|
6918
|
+
@DeleteStatusInfo.setter
|
|
6919
|
+
def DeleteStatusInfo(self, DeleteStatusInfo):
|
|
6920
|
+
self._DeleteStatusInfo = DeleteStatusInfo
|
|
6921
|
+
|
|
6863
6922
|
@property
|
|
6864
6923
|
def RequestId(self):
|
|
6865
6924
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -6874,6 +6933,7 @@ class DeleteStaffResponse(AbstractModel):
|
|
|
6874
6933
|
|
|
6875
6934
|
def _deserialize(self, params):
|
|
6876
6935
|
self._OnlineStaffList = params.get("OnlineStaffList")
|
|
6936
|
+
self._DeleteStatusInfo = params.get("DeleteStatusInfo")
|
|
6877
6937
|
self._RequestId = params.get("RequestId")
|
|
6878
6938
|
|
|
6879
6939
|
|
|
@@ -10083,11 +10143,11 @@ class DescribeNumbersRequest(AbstractModel):
|
|
|
10083
10143
|
|
|
10084
10144
|
def __init__(self):
|
|
10085
10145
|
r"""
|
|
10086
|
-
:param _SdkAppId:
|
|
10146
|
+
:param _SdkAppId: <p>应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc</p>
|
|
10087
10147
|
:type SdkAppId: int
|
|
10088
|
-
:param _PageNumber:
|
|
10148
|
+
:param _PageNumber: <p>页数,从0开始</p>
|
|
10089
10149
|
:type PageNumber: int
|
|
10090
|
-
:param _PageSize:
|
|
10150
|
+
:param _PageSize: <p>分页大小,默认20</p>
|
|
10091
10151
|
:type PageSize: int
|
|
10092
10152
|
"""
|
|
10093
10153
|
self._SdkAppId = None
|
|
@@ -10096,7 +10156,7 @@ class DescribeNumbersRequest(AbstractModel):
|
|
|
10096
10156
|
|
|
10097
10157
|
@property
|
|
10098
10158
|
def SdkAppId(self):
|
|
10099
|
-
r"""
|
|
10159
|
+
r"""<p>应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc</p>
|
|
10100
10160
|
:rtype: int
|
|
10101
10161
|
"""
|
|
10102
10162
|
return self._SdkAppId
|
|
@@ -10107,7 +10167,7 @@ class DescribeNumbersRequest(AbstractModel):
|
|
|
10107
10167
|
|
|
10108
10168
|
@property
|
|
10109
10169
|
def PageNumber(self):
|
|
10110
|
-
r"""
|
|
10170
|
+
r"""<p>页数,从0开始</p>
|
|
10111
10171
|
:rtype: int
|
|
10112
10172
|
"""
|
|
10113
10173
|
return self._PageNumber
|
|
@@ -10118,7 +10178,7 @@ class DescribeNumbersRequest(AbstractModel):
|
|
|
10118
10178
|
|
|
10119
10179
|
@property
|
|
10120
10180
|
def PageSize(self):
|
|
10121
|
-
r"""
|
|
10181
|
+
r"""<p>分页大小,默认20</p>
|
|
10122
10182
|
:rtype: int
|
|
10123
10183
|
"""
|
|
10124
10184
|
return self._PageSize
|
|
@@ -10149,9 +10209,9 @@ class DescribeNumbersResponse(AbstractModel):
|
|
|
10149
10209
|
|
|
10150
10210
|
def __init__(self):
|
|
10151
10211
|
r"""
|
|
10152
|
-
:param _TotalCount:
|
|
10212
|
+
:param _TotalCount: <p>总数量</p>
|
|
10153
10213
|
:type TotalCount: int
|
|
10154
|
-
:param _Numbers:
|
|
10214
|
+
:param _Numbers: <p>号码列表</p>
|
|
10155
10215
|
:type Numbers: list of NumberInfo
|
|
10156
10216
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10157
10217
|
:type RequestId: str
|
|
@@ -10162,7 +10222,7 @@ class DescribeNumbersResponse(AbstractModel):
|
|
|
10162
10222
|
|
|
10163
10223
|
@property
|
|
10164
10224
|
def TotalCount(self):
|
|
10165
|
-
r"""
|
|
10225
|
+
r"""<p>总数量</p>
|
|
10166
10226
|
:rtype: int
|
|
10167
10227
|
"""
|
|
10168
10228
|
return self._TotalCount
|
|
@@ -10173,7 +10233,7 @@ class DescribeNumbersResponse(AbstractModel):
|
|
|
10173
10233
|
|
|
10174
10234
|
@property
|
|
10175
10235
|
def Numbers(self):
|
|
10176
|
-
r"""
|
|
10236
|
+
r"""<p>号码列表</p>
|
|
10177
10237
|
:rtype: list of NumberInfo
|
|
10178
10238
|
"""
|
|
10179
10239
|
return self._Numbers
|
|
@@ -14740,6 +14800,12 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
|
|
|
14740
14800
|
:type MobileNddPrefix: str
|
|
14741
14801
|
:param _LocalNumberTrimAC: 同市固话去掉区号
|
|
14742
14802
|
:type LocalNumberTrimAC: bool
|
|
14803
|
+
:param _CalleeFormatPassthrough: 被叫格式透传 (完成透传用户输入,不做处理)
|
|
14804
|
+
:type CalleeFormatPassthrough: bool
|
|
14805
|
+
:param _CallerFormatPassthrough: 主叫格式透传 (完成透传用户输入,不做处理)
|
|
14806
|
+
:type CallerFormatPassthrough: bool
|
|
14807
|
+
:param _InternationalNumberPrefix: 国际长途前缀码
|
|
14808
|
+
:type InternationalNumberPrefix: str
|
|
14743
14809
|
"""
|
|
14744
14810
|
self._SdkAppId = None
|
|
14745
14811
|
self._DetailList = None
|
|
@@ -14747,6 +14813,9 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
|
|
|
14747
14813
|
self._Prefix = None
|
|
14748
14814
|
self._MobileNddPrefix = None
|
|
14749
14815
|
self._LocalNumberTrimAC = None
|
|
14816
|
+
self._CalleeFormatPassthrough = None
|
|
14817
|
+
self._CallerFormatPassthrough = None
|
|
14818
|
+
self._InternationalNumberPrefix = None
|
|
14750
14819
|
|
|
14751
14820
|
@property
|
|
14752
14821
|
def SdkAppId(self):
|
|
@@ -14814,6 +14883,39 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
|
|
|
14814
14883
|
def LocalNumberTrimAC(self, LocalNumberTrimAC):
|
|
14815
14884
|
self._LocalNumberTrimAC = LocalNumberTrimAC
|
|
14816
14885
|
|
|
14886
|
+
@property
|
|
14887
|
+
def CalleeFormatPassthrough(self):
|
|
14888
|
+
r"""被叫格式透传 (完成透传用户输入,不做处理)
|
|
14889
|
+
:rtype: bool
|
|
14890
|
+
"""
|
|
14891
|
+
return self._CalleeFormatPassthrough
|
|
14892
|
+
|
|
14893
|
+
@CalleeFormatPassthrough.setter
|
|
14894
|
+
def CalleeFormatPassthrough(self, CalleeFormatPassthrough):
|
|
14895
|
+
self._CalleeFormatPassthrough = CalleeFormatPassthrough
|
|
14896
|
+
|
|
14897
|
+
@property
|
|
14898
|
+
def CallerFormatPassthrough(self):
|
|
14899
|
+
r"""主叫格式透传 (完成透传用户输入,不做处理)
|
|
14900
|
+
:rtype: bool
|
|
14901
|
+
"""
|
|
14902
|
+
return self._CallerFormatPassthrough
|
|
14903
|
+
|
|
14904
|
+
@CallerFormatPassthrough.setter
|
|
14905
|
+
def CallerFormatPassthrough(self, CallerFormatPassthrough):
|
|
14906
|
+
self._CallerFormatPassthrough = CallerFormatPassthrough
|
|
14907
|
+
|
|
14908
|
+
@property
|
|
14909
|
+
def InternationalNumberPrefix(self):
|
|
14910
|
+
r"""国际长途前缀码
|
|
14911
|
+
:rtype: str
|
|
14912
|
+
"""
|
|
14913
|
+
return self._InternationalNumberPrefix
|
|
14914
|
+
|
|
14915
|
+
@InternationalNumberPrefix.setter
|
|
14916
|
+
def InternationalNumberPrefix(self, InternationalNumberPrefix):
|
|
14917
|
+
self._InternationalNumberPrefix = InternationalNumberPrefix
|
|
14918
|
+
|
|
14817
14919
|
|
|
14818
14920
|
def _deserialize(self, params):
|
|
14819
14921
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -14827,6 +14929,9 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
|
|
|
14827
14929
|
self._Prefix = params.get("Prefix")
|
|
14828
14930
|
self._MobileNddPrefix = params.get("MobileNddPrefix")
|
|
14829
14931
|
self._LocalNumberTrimAC = params.get("LocalNumberTrimAC")
|
|
14932
|
+
self._CalleeFormatPassthrough = params.get("CalleeFormatPassthrough")
|
|
14933
|
+
self._CallerFormatPassthrough = params.get("CallerFormatPassthrough")
|
|
14934
|
+
self._InternationalNumberPrefix = params.get("InternationalNumberPrefix")
|
|
14830
14935
|
memeber_set = set(params.keys())
|
|
14831
14936
|
for name, value in vars(self).items():
|
|
14832
14937
|
property_name = name[1:]
|
|
@@ -15182,20 +15287,23 @@ class NumberInfo(AbstractModel):
|
|
|
15182
15287
|
|
|
15183
15288
|
def __init__(self):
|
|
15184
15289
|
r"""
|
|
15185
|
-
:param _Number:
|
|
15290
|
+
:param _Number: <p>号码</p>
|
|
15186
15291
|
:type Number: str
|
|
15187
|
-
:param _CallOutSkillGroupIds:
|
|
15292
|
+
:param _CallOutSkillGroupIds: <p>绑定的外呼技能组</p>
|
|
15188
15293
|
:type CallOutSkillGroupIds: list of int non-negative
|
|
15189
|
-
:param _State:
|
|
15294
|
+
:param _State: <p>号码状态,1-正常,2-欠费停用,4-管理员停用,5-违规停用</p>
|
|
15190
15295
|
:type State: int
|
|
15296
|
+
:param _CostType: <p>是否自携号码</p><p>枚举值:</p><ul><li>0: 非自携</li><li>1: 自携</li></ul>
|
|
15297
|
+
:type CostType: int
|
|
15191
15298
|
"""
|
|
15192
15299
|
self._Number = None
|
|
15193
15300
|
self._CallOutSkillGroupIds = None
|
|
15194
15301
|
self._State = None
|
|
15302
|
+
self._CostType = None
|
|
15195
15303
|
|
|
15196
15304
|
@property
|
|
15197
15305
|
def Number(self):
|
|
15198
|
-
r"""
|
|
15306
|
+
r"""<p>号码</p>
|
|
15199
15307
|
:rtype: str
|
|
15200
15308
|
"""
|
|
15201
15309
|
return self._Number
|
|
@@ -15206,7 +15314,7 @@ class NumberInfo(AbstractModel):
|
|
|
15206
15314
|
|
|
15207
15315
|
@property
|
|
15208
15316
|
def CallOutSkillGroupIds(self):
|
|
15209
|
-
r"""
|
|
15317
|
+
r"""<p>绑定的外呼技能组</p>
|
|
15210
15318
|
:rtype: list of int non-negative
|
|
15211
15319
|
"""
|
|
15212
15320
|
return self._CallOutSkillGroupIds
|
|
@@ -15217,7 +15325,7 @@ class NumberInfo(AbstractModel):
|
|
|
15217
15325
|
|
|
15218
15326
|
@property
|
|
15219
15327
|
def State(self):
|
|
15220
|
-
r"""
|
|
15328
|
+
r"""<p>号码状态,1-正常,2-欠费停用,4-管理员停用,5-违规停用</p>
|
|
15221
15329
|
:rtype: int
|
|
15222
15330
|
"""
|
|
15223
15331
|
return self._State
|
|
@@ -15226,11 +15334,23 @@ class NumberInfo(AbstractModel):
|
|
|
15226
15334
|
def State(self, State):
|
|
15227
15335
|
self._State = State
|
|
15228
15336
|
|
|
15337
|
+
@property
|
|
15338
|
+
def CostType(self):
|
|
15339
|
+
r"""<p>是否自携号码</p><p>枚举值:</p><ul><li>0: 非自携</li><li>1: 自携</li></ul>
|
|
15340
|
+
:rtype: int
|
|
15341
|
+
"""
|
|
15342
|
+
return self._CostType
|
|
15343
|
+
|
|
15344
|
+
@CostType.setter
|
|
15345
|
+
def CostType(self, CostType):
|
|
15346
|
+
self._CostType = CostType
|
|
15347
|
+
|
|
15229
15348
|
|
|
15230
15349
|
def _deserialize(self, params):
|
|
15231
15350
|
self._Number = params.get("Number")
|
|
15232
15351
|
self._CallOutSkillGroupIds = params.get("CallOutSkillGroupIds")
|
|
15233
15352
|
self._State = params.get("State")
|
|
15353
|
+
self._CostType = params.get("CostType")
|
|
15234
15354
|
memeber_set = set(params.keys())
|
|
15235
15355
|
for name, value in vars(self).items():
|
|
15236
15356
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ccc
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.72
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.72
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.72
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.52
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|