tencentcloud-sdk-python-faceid 3.0.1447__py2.py3-none-any.whl → 3.0.1457__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-faceid might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/faceid/v20180301/models.py +19 -0
- {tencentcloud_sdk_python_faceid-3.0.1447.dist-info → tencentcloud_sdk_python_faceid-3.0.1457.dist-info}/METADATA +2 -2
- {tencentcloud_sdk_python_faceid-3.0.1447.dist-info → tencentcloud_sdk_python_faceid-3.0.1457.dist-info}/RECORD +6 -6
- {tencentcloud_sdk_python_faceid-3.0.1447.dist-info → tencentcloud_sdk_python_faceid-3.0.1457.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_faceid-3.0.1447.dist-info → tencentcloud_sdk_python_faceid-3.0.1457.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -8122,6 +8122,10 @@ class IntentionVerifyData(AbstractModel):
|
|
|
8122
8122
|
:param _AsrResultSimilarity: 本次流程用户语音与传入文本比对的相似度分值,取值范围 [0.00, 100.00]。只有配置了相似度阈值后才进行语音校验并返回相似度分值。
|
|
8123
8123
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8124
8124
|
:type AsrResultSimilarity: str
|
|
8125
|
+
:param _IntentionVerifyAudio: 意愿确认环节中录制的音频(base64)。
|
|
8126
|
+
- 若不存在则为空字符串。
|
|
8127
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8128
|
+
:type IntentionVerifyAudio: str
|
|
8125
8129
|
"""
|
|
8126
8130
|
self._IntentionVerifyVideo = None
|
|
8127
8131
|
self._AsrResult = None
|
|
@@ -8129,6 +8133,7 @@ class IntentionVerifyData(AbstractModel):
|
|
|
8129
8133
|
self._ErrorMessage = None
|
|
8130
8134
|
self._IntentionVerifyBestFrame = None
|
|
8131
8135
|
self._AsrResultSimilarity = None
|
|
8136
|
+
self._IntentionVerifyAudio = None
|
|
8132
8137
|
|
|
8133
8138
|
@property
|
|
8134
8139
|
def IntentionVerifyVideo(self):
|
|
@@ -8210,6 +8215,19 @@ class IntentionVerifyData(AbstractModel):
|
|
|
8210
8215
|
|
|
8211
8216
|
self._AsrResultSimilarity = AsrResultSimilarity
|
|
8212
8217
|
|
|
8218
|
+
@property
|
|
8219
|
+
def IntentionVerifyAudio(self):
|
|
8220
|
+
"""意愿确认环节中录制的音频(base64)。
|
|
8221
|
+
- 若不存在则为空字符串。
|
|
8222
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8223
|
+
:rtype: str
|
|
8224
|
+
"""
|
|
8225
|
+
return self._IntentionVerifyAudio
|
|
8226
|
+
|
|
8227
|
+
@IntentionVerifyAudio.setter
|
|
8228
|
+
def IntentionVerifyAudio(self, IntentionVerifyAudio):
|
|
8229
|
+
self._IntentionVerifyAudio = IntentionVerifyAudio
|
|
8230
|
+
|
|
8213
8231
|
|
|
8214
8232
|
def _deserialize(self, params):
|
|
8215
8233
|
self._IntentionVerifyVideo = params.get("IntentionVerifyVideo")
|
|
@@ -8218,6 +8236,7 @@ class IntentionVerifyData(AbstractModel):
|
|
|
8218
8236
|
self._ErrorMessage = params.get("ErrorMessage")
|
|
8219
8237
|
self._IntentionVerifyBestFrame = params.get("IntentionVerifyBestFrame")
|
|
8220
8238
|
self._AsrResultSimilarity = params.get("AsrResultSimilarity")
|
|
8239
|
+
self._IntentionVerifyAudio = params.get("IntentionVerifyAudio")
|
|
8221
8240
|
memeber_set = set(params.keys())
|
|
8222
8241
|
for name, value in vars(self).items():
|
|
8223
8242
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-faceid
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1457
|
|
4
4
|
Summary: Tencent Cloud Faceid 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.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.1457)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=Nf67e580z47LYWNXg7JuRSCLR-_tnAMr4q244ZY-_Hc,631
|
|
2
2
|
tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/faceid/v20180301/errorcodes.py,sha256=W8GgEB6jhgpjXQRWlc0-Q1BfUVGHFmj_Rr0wggUr-8Y,10531
|
|
5
5
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=5-9fHoOc31BZdIOJ1d6TK_p10C3KNE4HiK2AvXQbZIQ,38436
|
|
6
|
-
tencentcloud/faceid/v20180301/models.py,sha256=
|
|
7
|
-
tencentcloud_sdk_python_faceid-3.0.
|
|
8
|
-
tencentcloud_sdk_python_faceid-3.0.
|
|
9
|
-
tencentcloud_sdk_python_faceid-3.0.
|
|
10
|
-
tencentcloud_sdk_python_faceid-3.0.
|
|
6
|
+
tencentcloud/faceid/v20180301/models.py,sha256=NsmjeSou6Dp2VoRgNlBmbVcZDF2bCautXynfQO0omGo,372074
|
|
7
|
+
tencentcloud_sdk_python_faceid-3.0.1457.dist-info/METADATA,sha256=MEMd0wGEWLSMiPkqok7WXgOh8V15aMe6DSruQTeama0,1518
|
|
8
|
+
tencentcloud_sdk_python_faceid-3.0.1457.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_faceid-3.0.1457.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_faceid-3.0.1457.dist-info/RECORD,,
|
|
File without changes
|