tencentcloud-sdk-faceid 3.0.529 → 3.0.530
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 -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: 682cac2a0e638f7ca101747852373d245b5d9a75
|
|
4
|
+
data.tar.gz: fd92a9fc3d936e16510606cf1c382788b666607c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 218e664b8bdad5657ef02c838172c9e6df85714ee9cbd2fb2079a3e0405c6d9976d858ece1b4915b0cff7acb6a756278b76c646f5a81231cccb6361dfee06088
|
|
7
|
+
data.tar.gz: ac3b69fafc4613749ea63d02b348b6661c6241fc319acacb1aa81f74ae56d6d55950590040cc252dd8626d3646a83b60a2e05e04eea5a92ffa02503d7ad0ebbc
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.530
|
data/lib/v20180301/models.rb
CHANGED
|
@@ -1013,10 +1013,16 @@ module TencentCloud
|
|
|
1013
1013
|
# 4:一闪活体(动作+光线)
|
|
1014
1014
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1015
1015
|
# @type LivenessMode: Integer
|
|
1016
|
+
# @param NFCRequestIds: nfc重复计费requestId列表
|
|
1017
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1018
|
+
# @type NFCRequestIds: Array
|
|
1019
|
+
# @param NFCBillingCounts: nfc重复计费计数
|
|
1020
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1021
|
+
# @type NFCBillingCounts: Integer
|
|
1016
1022
|
|
|
1017
|
-
attr_accessor :ErrCode, :ErrMsg, :IdCard, :Name, :OcrNation, :OcrAddress, :OcrBirth, :OcrAuthority, :OcrValidDate, :OcrName, :OcrIdCard, :OcrGender, :IdInfoFrom, :LiveStatus, :LiveMsg, :Comparestatus, :Comparemsg, :Sim, :Location, :Extra, :LivenessDetail, :Mobile, :CompareLibType, :LivenessMode
|
|
1023
|
+
attr_accessor :ErrCode, :ErrMsg, :IdCard, :Name, :OcrNation, :OcrAddress, :OcrBirth, :OcrAuthority, :OcrValidDate, :OcrName, :OcrIdCard, :OcrGender, :IdInfoFrom, :LiveStatus, :LiveMsg, :Comparestatus, :Comparemsg, :Sim, :Location, :Extra, :LivenessDetail, :Mobile, :CompareLibType, :LivenessMode, :NFCRequestIds, :NFCBillingCounts
|
|
1018
1024
|
|
|
1019
|
-
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, idinfofrom=nil, livestatus=nil, livemsg=nil, comparestatus=nil, comparemsg=nil, sim=nil, location=nil, extra=nil, livenessdetail=nil, mobile=nil, comparelibtype=nil, livenessmode=nil)
|
|
1025
|
+
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, idinfofrom=nil, livestatus=nil, livemsg=nil, comparestatus=nil, comparemsg=nil, sim=nil, location=nil, extra=nil, livenessdetail=nil, mobile=nil, comparelibtype=nil, livenessmode=nil, nfcrequestids=nil, nfcbillingcounts=nil)
|
|
1020
1026
|
@ErrCode = errcode
|
|
1021
1027
|
@ErrMsg = errmsg
|
|
1022
1028
|
@IdCard = idcard
|
|
@@ -1041,6 +1047,8 @@ module TencentCloud
|
|
|
1041
1047
|
@Mobile = mobile
|
|
1042
1048
|
@CompareLibType = comparelibtype
|
|
1043
1049
|
@LivenessMode = livenessmode
|
|
1050
|
+
@NFCRequestIds = nfcrequestids
|
|
1051
|
+
@NFCBillingCounts = nfcbillingcounts
|
|
1044
1052
|
end
|
|
1045
1053
|
|
|
1046
1054
|
def deserialize(params)
|
|
@@ -1075,6 +1083,8 @@ module TencentCloud
|
|
|
1075
1083
|
@Mobile = params['Mobile']
|
|
1076
1084
|
@CompareLibType = params['CompareLibType']
|
|
1077
1085
|
@LivenessMode = params['LivenessMode']
|
|
1086
|
+
@NFCRequestIds = params['NFCRequestIds']
|
|
1087
|
+
@NFCBillingCounts = params['NFCBillingCounts']
|
|
1078
1088
|
end
|
|
1079
1089
|
end
|
|
1080
1090
|
|
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.530
|
|
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-03-
|
|
11
|
+
date: 2023-03-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|