tencentcloud-sdk-python-ccc 3.1.112__tar.gz → 3.1.120__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.112 → tencentcloud_sdk_python_ccc-3.1.120}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/setup.py +1 -1
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud/ccc/v20200210/models.py +15 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud_sdk_python_ccc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ccc-3.1.120/tencentcloud_sdk_python_ccc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ccc-3.1.112/tencentcloud_sdk_python_ccc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/README.rst +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud/ccc/__init__.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud/ccc/v20200210/__init__.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud/ccc/v20200210/ccc_client.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud/ccc/v20200210/ccc_client_async.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud/ccc/v20200210/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud_sdk_python_ccc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/tencentcloud_sdk_python_ccc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ccc-3.1.112 → tencentcloud_sdk_python_ccc-3.1.120}/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.120
|
|
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.120
|
|
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.120,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ccc SDK for Python',
|
|
@@ -1020,11 +1020,14 @@ class AISpeakEvent(AbstractModel):
|
|
|
1020
1020
|
:param _LatencyMetrics: <p>本次响应生成的时延结果</p>
|
|
1021
1021
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1022
1022
|
:type LatencyMetrics: :class:`tencentcloud.ccc.v20200210.models.AICallLatencyMetrics`
|
|
1023
|
+
:param _TraverseReason: <p>节点跳转的原因,仅画布为灵活模式时有值</p>
|
|
1024
|
+
:type TraverseReason: str
|
|
1023
1025
|
"""
|
|
1024
1026
|
self._CanBeInterrupted = None
|
|
1025
1027
|
self._SpokenText = None
|
|
1026
1028
|
self._SpokenType = None
|
|
1027
1029
|
self._LatencyMetrics = None
|
|
1030
|
+
self._TraverseReason = None
|
|
1028
1031
|
|
|
1029
1032
|
@property
|
|
1030
1033
|
def CanBeInterrupted(self):
|
|
@@ -1071,6 +1074,17 @@ class AISpeakEvent(AbstractModel):
|
|
|
1071
1074
|
def LatencyMetrics(self, LatencyMetrics):
|
|
1072
1075
|
self._LatencyMetrics = LatencyMetrics
|
|
1073
1076
|
|
|
1077
|
+
@property
|
|
1078
|
+
def TraverseReason(self):
|
|
1079
|
+
r"""<p>节点跳转的原因,仅画布为灵活模式时有值</p>
|
|
1080
|
+
:rtype: str
|
|
1081
|
+
"""
|
|
1082
|
+
return self._TraverseReason
|
|
1083
|
+
|
|
1084
|
+
@TraverseReason.setter
|
|
1085
|
+
def TraverseReason(self, TraverseReason):
|
|
1086
|
+
self._TraverseReason = TraverseReason
|
|
1087
|
+
|
|
1074
1088
|
|
|
1075
1089
|
def _deserialize(self, params):
|
|
1076
1090
|
self._CanBeInterrupted = params.get("CanBeInterrupted")
|
|
@@ -1079,6 +1093,7 @@ class AISpeakEvent(AbstractModel):
|
|
|
1079
1093
|
if params.get("LatencyMetrics") is not None:
|
|
1080
1094
|
self._LatencyMetrics = AICallLatencyMetrics()
|
|
1081
1095
|
self._LatencyMetrics._deserialize(params.get("LatencyMetrics"))
|
|
1096
|
+
self._TraverseReason = params.get("TraverseReason")
|
|
1082
1097
|
memeber_set = set(params.keys())
|
|
1083
1098
|
for name, value in vars(self).items():
|
|
1084
1099
|
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.120
|
|
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.120
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.120
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.112
|
|
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
|