tencentcloud-sdk-faceid 3.0.413 → 3.0.414
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 +24 -4
- 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: 08c7dbab1968a3d4207c840578ef4ccc23f9f76f
|
4
|
+
data.tar.gz: 0ea97b22ff5d28ad6d3f8b923997ace0e9b28e37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c790578a6bca0d55b2738c9d9f89bd81fadd98bdf3441772f728238866dd0683b58d5304eccbc7a094d9d93c2ba5a03f79a8fb49b5bbd20c662e7552fc8c6e45
|
7
|
+
data.tar.gz: 7350cf1aa6a3953d8330217a6f683f32ae9c031b7907dad5f8c15be651ccd1cb167b8c36938d79b8fb010d453559b13ec4ded074255c6bab3dc2c85304f65974
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.414
|
data/lib/v20180301/models.rb
CHANGED
@@ -791,10 +791,18 @@ module TencentCloud
|
|
791
791
|
# 人工审核库;
|
792
792
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
793
793
|
# @type CompareLibType: String
|
794
|
+
# @param LivenessMode: 枚举活体检测类型:
|
795
|
+
# 0:未知
|
796
|
+
# 1:数字活体
|
797
|
+
# 2:动作活体
|
798
|
+
# 3:静默活体
|
799
|
+
# 4:一闪活体(动作+光线)
|
800
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
801
|
+
# @type LivenessMode: Integer
|
794
802
|
|
795
|
-
attr_accessor :ReqTime, :Seq, :Idcard, :Name, :Sim, :IsNeedCharge, :Errcode, :Errmsg, :Livestatus, :Livemsg, :Comparestatus, :Comparemsg, :CompareLibType
|
803
|
+
attr_accessor :ReqTime, :Seq, :Idcard, :Name, :Sim, :IsNeedCharge, :Errcode, :Errmsg, :Livestatus, :Livemsg, :Comparestatus, :Comparemsg, :CompareLibType, :LivenessMode
|
796
804
|
|
797
|
-
def initialize(reqtime=nil, seq=nil, idcard=nil, name=nil, sim=nil, isneedcharge=nil, errcode=nil, errmsg=nil, livestatus=nil, livemsg=nil, comparestatus=nil, comparemsg=nil, comparelibtype=nil)
|
805
|
+
def initialize(reqtime=nil, seq=nil, idcard=nil, name=nil, sim=nil, isneedcharge=nil, errcode=nil, errmsg=nil, livestatus=nil, livemsg=nil, comparestatus=nil, comparemsg=nil, comparelibtype=nil, livenessmode=nil)
|
798
806
|
@ReqTime = reqtime
|
799
807
|
@Seq = seq
|
800
808
|
@Idcard = idcard
|
@@ -808,6 +816,7 @@ module TencentCloud
|
|
808
816
|
@Comparestatus = comparestatus
|
809
817
|
@Comparemsg = comparemsg
|
810
818
|
@CompareLibType = comparelibtype
|
819
|
+
@LivenessMode = livenessmode
|
811
820
|
end
|
812
821
|
|
813
822
|
def deserialize(params)
|
@@ -824,6 +833,7 @@ module TencentCloud
|
|
824
833
|
@Comparestatus = params['Comparestatus']
|
825
834
|
@Comparemsg = params['Comparemsg']
|
826
835
|
@CompareLibType = params['CompareLibType']
|
836
|
+
@LivenessMode = params['LivenessMode']
|
827
837
|
end
|
828
838
|
end
|
829
839
|
|
@@ -984,10 +994,18 @@ module TencentCloud
|
|
984
994
|
# 人工审核库;
|
985
995
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
986
996
|
# @type CompareLibType: String
|
997
|
+
# @param LivenessMode: 本次流程最终活体类型。包括:
|
998
|
+
# 0:未知
|
999
|
+
# 1:数字活体
|
1000
|
+
# 2:动作活体
|
1001
|
+
# 3:静默活体
|
1002
|
+
# 4:一闪活体(动作+光线)
|
1003
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1004
|
+
# @type LivenessMode: Integer
|
987
1005
|
|
988
|
-
attr_accessor :ErrCode, :ErrMsg, :IdCard, :Name, :OcrNation, :OcrAddress, :OcrBirth, :OcrAuthority, :OcrValidDate, :OcrName, :OcrIdCard, :OcrGender, :LiveStatus, :LiveMsg, :Comparestatus, :Comparemsg, :Sim, :Location, :Extra, :LivenessDetail, :Mobile, :CompareLibType
|
1006
|
+
attr_accessor :ErrCode, :ErrMsg, :IdCard, :Name, :OcrNation, :OcrAddress, :OcrBirth, :OcrAuthority, :OcrValidDate, :OcrName, :OcrIdCard, :OcrGender, :LiveStatus, :LiveMsg, :Comparestatus, :Comparemsg, :Sim, :Location, :Extra, :LivenessDetail, :Mobile, :CompareLibType, :LivenessMode
|
989
1007
|
|
990
|
-
def initialize(errcode=nil, errmsg=nil, idcard=nil, name=nil, ocrnation=nil, ocraddress=nil, ocrbirth=nil, ocrauthority=nil, ocrvaliddate=nil, ocrname=nil, ocridcard=nil, ocrgender=nil, livestatus=nil, livemsg=nil, comparestatus=nil, comparemsg=nil, sim=nil, location=nil, extra=nil, livenessdetail=nil, mobile=nil, comparelibtype=nil)
|
1008
|
+
def initialize(errcode=nil, errmsg=nil, idcard=nil, name=nil, ocrnation=nil, ocraddress=nil, ocrbirth=nil, ocrauthority=nil, ocrvaliddate=nil, ocrname=nil, ocridcard=nil, ocrgender=nil, livestatus=nil, livemsg=nil, comparestatus=nil, comparemsg=nil, sim=nil, location=nil, extra=nil, livenessdetail=nil, mobile=nil, comparelibtype=nil, livenessmode=nil)
|
991
1009
|
@ErrCode = errcode
|
992
1010
|
@ErrMsg = errmsg
|
993
1011
|
@IdCard = idcard
|
@@ -1010,6 +1028,7 @@ module TencentCloud
|
|
1010
1028
|
@LivenessDetail = livenessdetail
|
1011
1029
|
@Mobile = mobile
|
1012
1030
|
@CompareLibType = comparelibtype
|
1031
|
+
@LivenessMode = livenessmode
|
1013
1032
|
end
|
1014
1033
|
|
1015
1034
|
def deserialize(params)
|
@@ -1042,6 +1061,7 @@ module TencentCloud
|
|
1042
1061
|
end
|
1043
1062
|
@Mobile = params['Mobile']
|
1044
1063
|
@CompareLibType = params['CompareLibType']
|
1064
|
+
@LivenessMode = params['LivenessMode']
|
1045
1065
|
end
|
1046
1066
|
end
|
1047
1067
|
|
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.414
|
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-09-
|
11
|
+
date: 2022-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|