tencentcloud-sdk-faceid 3.0.911 → 3.0.912
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180301/models.rb +14 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a809685ef21f0203dff815a27754ce026008863
|
4
|
+
data.tar.gz: f44d72b20c6633cea7751a1b8fb7f0934c3031ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bfb52b3f7fe0c435a2182320cace606adee243d2ce0848985062ac153b28361c6d414f5aea23aac8520ea27ce49d6aff1edae44a0f9f4f0428e65bdeeeb6959
|
7
|
+
data.tar.gz: 500f78d386fd0dd9806535f96a5eb9f0123c42d0dccb875849d351d64d77a8fa15b161828b0780ceba8eea7cada5fa5694c1215f8eba5bcee3f7c5534b521425
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.912
|
data/lib/v20180301/models.rb
CHANGED
@@ -306,8 +306,8 @@ module TencentCloud
|
|
306
306
|
|
307
307
|
attr_accessor :ReqTime, :Seq, :IdCard, :Idcard, :Name, :Sim, :IsNeedCharge, :ChargeType, :ErrorCode, :ErrorMessage
|
308
308
|
extend Gem::Deprecate
|
309
|
-
deprecate :Idcard, :none, 2024,
|
310
|
-
deprecate :Idcard=, :none, 2024,
|
309
|
+
deprecate :Idcard, :none, 2024, 9
|
310
|
+
deprecate :Idcard=, :none, 2024, 9
|
311
311
|
|
312
312
|
def initialize(reqtime=nil, seq=nil, idcard=nil, name=nil, sim=nil, isneedcharge=nil, chargetype=nil, errorcode=nil, errormessage=nil)
|
313
313
|
@ReqTime = reqtime
|
@@ -2830,8 +2830,8 @@ module TencentCloud
|
|
2830
2830
|
|
2831
2831
|
attr_accessor :IntentionVerifyVideo, :AsrResult, :ErrorCode, :ErrorMessage, :IntentionVerifyBestFrame, :AsrResultSimilarity
|
2832
2832
|
extend Gem::Deprecate
|
2833
|
-
deprecate :AsrResultSimilarity, :none, 2024,
|
2834
|
-
deprecate :AsrResultSimilarity=, :none, 2024,
|
2833
|
+
deprecate :AsrResultSimilarity, :none, 2024, 9
|
2834
|
+
deprecate :AsrResultSimilarity=, :none, 2024, 9
|
2835
2835
|
|
2836
2836
|
def initialize(intentionverifyvideo=nil, asrresult=nil, errorcode=nil, errormessage=nil, intentionverifybestframe=nil, asrresultsimilarity=nil)
|
2837
2837
|
@IntentionVerifyVideo = intentionverifyvideo
|
@@ -3791,19 +3791,27 @@ module TencentCloud
|
|
3791
3791
|
# @type IntentionType: Integer
|
3792
3792
|
# @param MouthOpenRecognition: 用户语音回答过程中是否开启张嘴识别检测,默认不开启,仅在意愿核身问答模式中使用。
|
3793
3793
|
# @type MouthOpenRecognition: Boolean
|
3794
|
+
# @param Speed: 意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
|
3795
|
+
# 0:智能语速(根据播报文案的长度自动调整语音播报速度)
|
3796
|
+
# 1:固定1倍速
|
3797
|
+
# 2:固定1.2倍速
|
3798
|
+
# 3:固定1.5倍速
|
3799
|
+
# @type Speed: Integer
|
3794
3800
|
|
3795
|
-
attr_accessor :IntentionRecognition, :IntentionType, :MouthOpenRecognition
|
3801
|
+
attr_accessor :IntentionRecognition, :IntentionType, :MouthOpenRecognition, :Speed
|
3796
3802
|
|
3797
|
-
def initialize(intentionrecognition=nil, intentiontype=nil, mouthopenrecognition=nil)
|
3803
|
+
def initialize(intentionrecognition=nil, intentiontype=nil, mouthopenrecognition=nil, speed=nil)
|
3798
3804
|
@IntentionRecognition = intentionrecognition
|
3799
3805
|
@IntentionType = intentiontype
|
3800
3806
|
@MouthOpenRecognition = mouthopenrecognition
|
3807
|
+
@Speed = speed
|
3801
3808
|
end
|
3802
3809
|
|
3803
3810
|
def deserialize(params)
|
3804
3811
|
@IntentionRecognition = params['IntentionRecognition']
|
3805
3812
|
@IntentionType = params['IntentionType']
|
3806
3813
|
@MouthOpenRecognition = params['MouthOpenRecognition']
|
3814
|
+
@Speed = params['Speed']
|
3807
3815
|
end
|
3808
3816
|
end
|
3809
3817
|
|