tencentcloud-sdk-python-ccc 3.1.59__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/models.py +90 -0
  5. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud_sdk_python_ccc.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ccc-3.1.72/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.72}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/ccc_client.py +0 -0
  13. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/ccc_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud/ccc/v20200210/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/tencentcloud_sdk_python_ccc.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ccc-3.1.59 → tencentcloud_sdk_python_ccc-3.1.72}/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.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.59
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.59
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.59,<4.0.0"],
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',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.59'
17
+ __version__ = '3.1.72'
@@ -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:]
@@ -14755,6 +14800,12 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
14755
14800
  :type MobileNddPrefix: str
14756
14801
  :param _LocalNumberTrimAC: 同市固话去掉区号
14757
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
14758
14809
  """
14759
14810
  self._SdkAppId = None
14760
14811
  self._DetailList = None
@@ -14762,6 +14813,9 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
14762
14813
  self._Prefix = None
14763
14814
  self._MobileNddPrefix = None
14764
14815
  self._LocalNumberTrimAC = None
14816
+ self._CalleeFormatPassthrough = None
14817
+ self._CallerFormatPassthrough = None
14818
+ self._InternationalNumberPrefix = None
14765
14819
 
14766
14820
  @property
14767
14821
  def SdkAppId(self):
@@ -14829,6 +14883,39 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
14829
14883
  def LocalNumberTrimAC(self, LocalNumberTrimAC):
14830
14884
  self._LocalNumberTrimAC = LocalNumberTrimAC
14831
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
+
14832
14919
 
14833
14920
  def _deserialize(self, params):
14834
14921
  self._SdkAppId = params.get("SdkAppId")
@@ -14842,6 +14929,9 @@ class ModifyOwnNumberApplyRequest(AbstractModel):
14842
14929
  self._Prefix = params.get("Prefix")
14843
14930
  self._MobileNddPrefix = params.get("MobileNddPrefix")
14844
14931
  self._LocalNumberTrimAC = params.get("LocalNumberTrimAC")
14932
+ self._CalleeFormatPassthrough = params.get("CalleeFormatPassthrough")
14933
+ self._CallerFormatPassthrough = params.get("CallerFormatPassthrough")
14934
+ self._InternationalNumberPrefix = params.get("InternationalNumberPrefix")
14845
14935
  memeber_set = set(params.keys())
14846
14936
  for name, value in vars(self).items():
14847
14937
  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.59
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.59
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.59