tencentcloud-sdk-faceid 3.0.460 → 3.0.461

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180301/models.rb +25 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2384b41a56334e6046813f924c120ef1e67b7de9
4
- data.tar.gz: 60a8aee89ff7762e07aa5c184c19bab8ea21500d
3
+ metadata.gz: b179927ba34a164c3429245a4d09bde859dc491d
4
+ data.tar.gz: 8aebbd0615efb84535b8d63a7faf56b2e85cf9af
5
5
  SHA512:
6
- metadata.gz: ace3b0f119eebd7c42f8cde72176d178e211ae2372700e55dea2c06a0ebf1d217f9b0fda966fa696346746a0325a88b7a9db7b346afc4471bda81258c2232cda
7
- data.tar.gz: 0fd3fdba7969b2fdf99cd6f2b7b11f9eb6b3df41a1e3bdf98851b7f32f43de559003bcc4f0c8540bcb10d62a34e8bdb5353035256cbac0909d6f60c948678439
6
+ metadata.gz: 59bf5328b891477574e3bfc557a56d673fa5a4b228126f48dd41998d8c20c1fb5f3a6e4a6bdc132d26c0c5a78d684d915400328c1895c45d098a51c16ff4ae68
7
+ data.tar.gz: 5d0cc99659f48f45d972a218402cc0d8a36b397553eb202e261345de9a7c01d6310184d5069b4c70df3df94b236165eba12d05d2fcedf9d8e44b846723c56541
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.460
1
+ 3.0.461
@@ -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.460
4
+ version: 3.0.461
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-28 00:00:00.000000000 Z
11
+ date: 2022-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common