tencentcloud-sdk-faceid 3.0.652 → 3.0.654
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 +12 -5
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87159e399ffcfb2ae005c8f56efd82bd092c6461
|
4
|
+
data.tar.gz: 79373a803f9f00325d3c243da02b13822f3a82ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60970977cb0b42c819134cee2282a65e9003ba00665571b68c8b5165a8ed989c64fd50f0d336d195b5617c564d368b6d3a2ad40862f5798dff13a59399bcdd25
|
7
|
+
data.tar.gz: 193e39244ac882f9bc1881fb2f10ad3388e8df9a0d8e06cc28967c60468ddfc0dc6deff6359c92a1f460b061de4c8ed343869870151e8ff9d420aa612256c125
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.654
|
data/lib/v20180301/models.rb
CHANGED
@@ -261,7 +261,9 @@ module TencentCloud
|
|
261
261
|
# @type ReqTime: String
|
262
262
|
# @param Seq: 一比一请求的唯一标记。
|
263
263
|
# @type Seq: String
|
264
|
-
# @param
|
264
|
+
# @param IdCard: 一比一时使用的、脱敏后的身份证号。
|
265
|
+
# @type IdCard: String
|
266
|
+
# @param Idcard: 已废弃。请使用“IdCard”字段
|
265
267
|
# @type Idcard: String
|
266
268
|
# @param Name: 一比一时使用的、脱敏后的姓名。
|
267
269
|
# @type Name: String
|
@@ -276,11 +278,15 @@ module TencentCloud
|
|
276
278
|
# @param ErrorMessage: 本次活体一比一最终结果描述。
|
277
279
|
# @type ErrorMessage: String
|
278
280
|
|
279
|
-
attr_accessor :ReqTime, :Seq, :Idcard, :Name, :Sim, :IsNeedCharge, :ChargeType, :ErrorCode, :ErrorMessage
|
281
|
+
attr_accessor :ReqTime, :Seq, :IdCard, :Idcard, :Name, :Sim, :IsNeedCharge, :ChargeType, :ErrorCode, :ErrorMessage
|
282
|
+
extend Gem::Deprecate
|
283
|
+
deprecate :Idcard, :none, 2023, 9
|
284
|
+
deprecate :Idcard=, :none, 2023, 9
|
280
285
|
|
281
|
-
def initialize(reqtime=nil, seq=nil, idcard=nil, name=nil, sim=nil, isneedcharge=nil, chargetype=nil, errorcode=nil, errormessage=nil)
|
286
|
+
def initialize(reqtime=nil, seq=nil, idcard=nil, idcard=nil, name=nil, sim=nil, isneedcharge=nil, chargetype=nil, errorcode=nil, errormessage=nil)
|
282
287
|
@ReqTime = reqtime
|
283
288
|
@Seq = seq
|
289
|
+
@IdCard = idcard
|
284
290
|
@Idcard = idcard
|
285
291
|
@Name = name
|
286
292
|
@Sim = sim
|
@@ -293,6 +299,7 @@ module TencentCloud
|
|
293
299
|
def deserialize(params)
|
294
300
|
@ReqTime = params['ReqTime']
|
295
301
|
@Seq = params['Seq']
|
302
|
+
@IdCard = params['IdCard']
|
296
303
|
@Idcard = params['Idcard']
|
297
304
|
@Name = params['Name']
|
298
305
|
@Sim = params['Sim']
|
@@ -2453,8 +2460,8 @@ module TencentCloud
|
|
2453
2460
|
|
2454
2461
|
attr_accessor :IntentionVerifyVideo, :AsrResult, :ErrorCode, :ErrorMessage, :IntentionVerifyBestFrame, :AsrResultSimilarity
|
2455
2462
|
extend Gem::Deprecate
|
2456
|
-
deprecate :AsrResultSimilarity, :none, 2023,
|
2457
|
-
deprecate :AsrResultSimilarity=, :none, 2023,
|
2463
|
+
deprecate :AsrResultSimilarity, :none, 2023, 9
|
2464
|
+
deprecate :AsrResultSimilarity=, :none, 2023, 9
|
2458
2465
|
|
2459
2466
|
def initialize(intentionverifyvideo=nil, asrresult=nil, errorcode=nil, errormessage=nil, intentionverifybestframe=nil, asrresultsimilarity=nil)
|
2460
2467
|
@IntentionVerifyVideo = intentionverifyvideo
|
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.654
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20180301/client.rb
|
37
|
-
- lib/v20180301/models.rb
|
38
36
|
- lib/tencentcloud-sdk-faceid.rb
|
37
|
+
- lib/v20180301/models.rb
|
38
|
+
- lib/v20180301/client.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|