tencentcloud-sdk-python-ccc 3.0.1283__tar.gz → 3.0.1285__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 (16) hide show
  1. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud/ccc/v20200210/models.py +15 -0
  5. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud_sdk_python_ccc.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ccc-3.0.1285/tencentcloud_sdk_python_ccc.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ccc-3.0.1283/tencentcloud_sdk_python_ccc.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud/ccc/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud/ccc/v20200210/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud/ccc/v20200210/ccc_client.py +0 -0
  13. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud/ccc/v20200210/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud_sdk_python_ccc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud_sdk_python_ccc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ccc-3.0.1283 → tencentcloud-sdk-python-ccc-3.0.1285}/tencentcloud_sdk_python_ccc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ccc
3
- Version: 3.0.1283
3
+ Version: 3.0.1285
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
@@ -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.0.1283"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1285"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Ccc SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1283'
17
+ __version__ = '3.0.1285'
@@ -1984,6 +1984,8 @@ HoaiMy
1984
1984
  :type NotifyDuration: int
1985
1985
  :param _NotifyMessage: 用户NotifyDuration没说话,AI提示的语句,默认是"抱歉,我没听清。您可以重复下吗?"
1986
1986
  :type NotifyMessage: str
1987
+ :param _NotifyMaxCount: 最大触发AI提示音次数,默认为不限制
1988
+ :type NotifyMaxCount: int
1987
1989
  :param _CustomTTSConfig: <p>和VoiceType字段需要选填一个,这里是使用自己自定义的TTS,VoiceType是系统内置的一些音色</p>
1988
1990
  <ul>
1989
1991
  <li>Tencent TTS<br>
@@ -2084,6 +2086,7 @@ HoaiMy
2084
2086
  self._EndFunctionDesc = None
2085
2087
  self._NotifyDuration = None
2086
2088
  self._NotifyMessage = None
2089
+ self._NotifyMaxCount = None
2087
2090
  self._CustomTTSConfig = None
2088
2091
 
2089
2092
  @property
@@ -2383,6 +2386,17 @@ HoaiMy
2383
2386
  def NotifyMessage(self, NotifyMessage):
2384
2387
  self._NotifyMessage = NotifyMessage
2385
2388
 
2389
+ @property
2390
+ def NotifyMaxCount(self):
2391
+ """最大触发AI提示音次数,默认为不限制
2392
+ :rtype: int
2393
+ """
2394
+ return self._NotifyMaxCount
2395
+
2396
+ @NotifyMaxCount.setter
2397
+ def NotifyMaxCount(self, NotifyMaxCount):
2398
+ self._NotifyMaxCount = NotifyMaxCount
2399
+
2386
2400
  @property
2387
2401
  def CustomTTSConfig(self):
2388
2402
  """<p>和VoiceType字段需要选填一个,这里是使用自己自定义的TTS,VoiceType是系统内置的一些音色</p>
@@ -2493,6 +2507,7 @@ HoaiMy
2493
2507
  self._EndFunctionDesc = params.get("EndFunctionDesc")
2494
2508
  self._NotifyDuration = params.get("NotifyDuration")
2495
2509
  self._NotifyMessage = params.get("NotifyMessage")
2510
+ self._NotifyMaxCount = params.get("NotifyMaxCount")
2496
2511
  self._CustomTTSConfig = params.get("CustomTTSConfig")
2497
2512
  memeber_set = set(params.keys())
2498
2513
  for name, value in vars(self).items():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ccc
3
- Version: 3.0.1283
3
+ Version: 3.0.1285
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1285
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1283