tencentcloud-sdk-faceid 3.0.746 → 3.0.748
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 +14 -6
- 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: 658f7505abe290bc296983486b61a432827f0d8f
|
4
|
+
data.tar.gz: 55f93f2a287db42da7f30003bc19440f3d005e6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db74066c9ed0b833e54b3753ff7e4a0ce136d6097bec6ed84e4817b217064c3016923487f1ed86268728e5084981c455158a8fa83eb6c9ab6211dea00295665b
|
7
|
+
data.tar.gz: 9ff18b9b34fb228fed89f87598e0295fd1c4529a218a91c243fe4e6c9f3da22b0d77f43a4ea967d4a00c46d3df279c442f1ec65c9a77744b822758d72dad07df
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.748
|
data/lib/v20180301/models.rb
CHANGED
@@ -304,8 +304,8 @@ module TencentCloud
|
|
304
304
|
|
305
305
|
attr_accessor :ReqTime, :Seq, :IdCard, :Idcard, :Name, :Sim, :IsNeedCharge, :ChargeType, :ErrorCode, :ErrorMessage
|
306
306
|
extend Gem::Deprecate
|
307
|
-
deprecate :Idcard, :none,
|
308
|
-
deprecate :Idcard=, :none,
|
307
|
+
deprecate :Idcard, :none, 2024, 1
|
308
|
+
deprecate :Idcard=, :none, 2024, 1
|
309
309
|
|
310
310
|
def initialize(reqtime=nil, seq=nil, idcard=nil, idcard=nil, name=nil, sim=nil, isneedcharge=nil, chargetype=nil, errorcode=nil, errormessage=nil)
|
311
311
|
@ReqTime = reqtime
|
@@ -1679,19 +1679,27 @@ module TencentCloud
|
|
1679
1679
|
# @type InfoType: String
|
1680
1680
|
# @param BestFramesCount: 从活体视频中截取一定张数的最佳帧。默认为0,最大为3,超出3的最多只给3张。(InfoType需要包含3)
|
1681
1681
|
# @type BestFramesCount: Integer
|
1682
|
+
# @param IsCutIdCardImage: 是否对身份证照片进行裁边。默认为false。(InfoType需要包含2)
|
1683
|
+
# @type IsCutIdCardImage: Boolean
|
1684
|
+
# @param IsNeedIdCardAvatar: 是否需要从身份证中抠出头像。默认为false。(InfoType需要包含2)
|
1685
|
+
# @type IsNeedIdCardAvatar: Boolean
|
1682
1686
|
|
1683
|
-
attr_accessor :EidToken, :InfoType, :BestFramesCount
|
1687
|
+
attr_accessor :EidToken, :InfoType, :BestFramesCount, :IsCutIdCardImage, :IsNeedIdCardAvatar
|
1684
1688
|
|
1685
|
-
def initialize(eidtoken=nil, infotype=nil, bestframescount=nil)
|
1689
|
+
def initialize(eidtoken=nil, infotype=nil, bestframescount=nil, iscutidcardimage=nil, isneedidcardavatar=nil)
|
1686
1690
|
@EidToken = eidtoken
|
1687
1691
|
@InfoType = infotype
|
1688
1692
|
@BestFramesCount = bestframescount
|
1693
|
+
@IsCutIdCardImage = iscutidcardimage
|
1694
|
+
@IsNeedIdCardAvatar = isneedidcardavatar
|
1689
1695
|
end
|
1690
1696
|
|
1691
1697
|
def deserialize(params)
|
1692
1698
|
@EidToken = params['EidToken']
|
1693
1699
|
@InfoType = params['InfoType']
|
1694
1700
|
@BestFramesCount = params['BestFramesCount']
|
1701
|
+
@IsCutIdCardImage = params['IsCutIdCardImage']
|
1702
|
+
@IsNeedIdCardAvatar = params['IsNeedIdCardAvatar']
|
1695
1703
|
end
|
1696
1704
|
end
|
1697
1705
|
|
@@ -2656,8 +2664,8 @@ module TencentCloud
|
|
2656
2664
|
|
2657
2665
|
attr_accessor :IntentionVerifyVideo, :AsrResult, :ErrorCode, :ErrorMessage, :IntentionVerifyBestFrame, :AsrResultSimilarity
|
2658
2666
|
extend Gem::Deprecate
|
2659
|
-
deprecate :AsrResultSimilarity, :none,
|
2660
|
-
deprecate :AsrResultSimilarity=, :none,
|
2667
|
+
deprecate :AsrResultSimilarity, :none, 2024, 1
|
2668
|
+
deprecate :AsrResultSimilarity=, :none, 2024, 1
|
2661
2669
|
|
2662
2670
|
def initialize(intentionverifyvideo=nil, asrresult=nil, errorcode=nil, errormessage=nil, intentionverifybestframe=nil, asrresultsimilarity=nil)
|
2663
2671
|
@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.748
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|