tencentcloud-sdk-faceid 3.0.460 → 3.0.462
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180301/models.rb +25 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0b745a59378b3df8e750defb55fa142d3464d77
|
4
|
+
data.tar.gz: cb64b7c400796249b0c4c39a654cce5863db3de7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3627f3e08615bc073021e0cccaaa25bdf61069de15c355a64ee1216039f17c1eccb6c6dcfc413763a735a8fe83c4cc3a6f03987d23b75bacd71bff85574edf9
|
7
|
+
data.tar.gz: e39cf51cad9a29b5dca31662bb1694e65c1ffaeb1c3fecaba7f0ab3fdf37157d8fadaa708a46dc49d2f6a488c560c3c62e2a150a26d353c8d3a492da99a44aca
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.462
|
data/lib/v20180301/models.rb
CHANGED
@@ -681,10 +681,12 @@ module TencentCloud
|
|
681
681
|
# @type IntentionVerifyText: String
|
682
682
|
# @param IntentionQuestions: 意愿核身(问答模式)使用的文案,包括:系统语音播报的文本、需要核验的标准文本。当前仅支持一个播报文本+回答文本。
|
683
683
|
# @type IntentionQuestions: Array
|
684
|
+
# @param Config: RuleId相关配置
|
685
|
+
# @type Config: :class:`Tencentcloud::Faceid.v20180301.models.RuleIdConfig`
|
684
686
|
|
685
|
-
attr_accessor :RuleId, :TerminalType, :IdCard, :Name, :RedirectUrl, :Extra, :ImageBase64, :Encryption, :IntentionVerifyText, :IntentionQuestions
|
687
|
+
attr_accessor :RuleId, :TerminalType, :IdCard, :Name, :RedirectUrl, :Extra, :ImageBase64, :Encryption, :IntentionVerifyText, :IntentionQuestions, :Config
|
686
688
|
|
687
|
-
def initialize(ruleid=nil, terminaltype=nil, idcard=nil, name=nil, redirecturl=nil, extra=nil, imagebase64=nil, encryption=nil, intentionverifytext=nil, intentionquestions=nil)
|
689
|
+
def initialize(ruleid=nil, terminaltype=nil, idcard=nil, name=nil, redirecturl=nil, extra=nil, imagebase64=nil, encryption=nil, intentionverifytext=nil, intentionquestions=nil, config=nil)
|
688
690
|
@RuleId = ruleid
|
689
691
|
@TerminalType = terminaltype
|
690
692
|
@IdCard = idcard
|
@@ -695,6 +697,7 @@ module TencentCloud
|
|
695
697
|
@Encryption = encryption
|
696
698
|
@IntentionVerifyText = intentionverifytext
|
697
699
|
@IntentionQuestions = intentionquestions
|
700
|
+
@Config = config
|
698
701
|
end
|
699
702
|
|
700
703
|
def deserialize(params)
|
@@ -718,6 +721,10 @@ module TencentCloud
|
|
718
721
|
@IntentionQuestions << intentionquestion_tmp
|
719
722
|
end
|
720
723
|
end
|
724
|
+
unless params['Config'].nil?
|
725
|
+
@Config = RuleIdConfig.new
|
726
|
+
@Config.deserialize(params['Config'])
|
727
|
+
end
|
721
728
|
end
|
722
729
|
end
|
723
730
|
|
@@ -3241,6 +3248,22 @@ module TencentCloud
|
|
3241
3248
|
end
|
3242
3249
|
end
|
3243
3250
|
|
3251
|
+
# RuleId相关配置
|
3252
|
+
class RuleIdConfig < TencentCloud::Common::AbstractModel
|
3253
|
+
# @param IntentionRecognition: 意愿核身过程中识别用户的回答意图,开启后除了IntentionQuestions的Answers列表中的标准回答会通过,近似意图的回答也会通过,默认不开启。
|
3254
|
+
# @type IntentionRecognition: Boolean
|
3255
|
+
|
3256
|
+
attr_accessor :IntentionRecognition
|
3257
|
+
|
3258
|
+
def initialize(intentionrecognition=nil)
|
3259
|
+
@IntentionRecognition = intentionrecognition
|
3260
|
+
end
|
3261
|
+
|
3262
|
+
def deserialize(params)
|
3263
|
+
@IntentionRecognition = params['IntentionRecognition']
|
3264
|
+
end
|
3265
|
+
end
|
3266
|
+
|
3244
3267
|
# 账单详情
|
3245
3268
|
class WeChatBillDetail < TencentCloud::Common::AbstractModel
|
3246
3269
|
# @param BizToken: token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-faceid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.462
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|