tencentcloud-sdk-faceid 3.0.549 → 3.0.551
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 +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87c20d04da35ecca770f24bba5ac7b9be6e68749
|
4
|
+
data.tar.gz: 984e7b2a068f665339d662cb547900be3f3c3af6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 029c8feaf5fe9b5eb81e7be5e475eba274ac06e6a25b56f1a2bd38796422dd4f8af11b2a8da9a87907f3d31b29451d3c13dfff5f69707d3afd39ae6a5aa06c00
|
7
|
+
data.tar.gz: e24e15a1e777377cddb78a141ddd0395b36a7a61f94b17d312ad02eec83bb10bf3f66ee6ad662ae8d6a740c0e8608ad6dd6550b90201d535c047512f204af598
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.551
|
data/lib/v20180301/models.rb
CHANGED
@@ -1019,10 +1019,16 @@ module TencentCloud
|
|
1019
1019
|
# @param NFCBillingCounts: nfc重复计费计数
|
1020
1020
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1021
1021
|
# @type NFCBillingCounts: Integer
|
1022
|
+
# @param PassNo: 港澳台居住证通行证号码
|
1023
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1024
|
+
# @type PassNo: String
|
1025
|
+
# @param VisaNum: 港澳台居住证签发次数
|
1026
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1027
|
+
# @type VisaNum: String
|
1022
1028
|
|
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
|
1029
|
+
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, :PassNo, :VisaNum
|
1024
1030
|
|
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)
|
1031
|
+
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, passno=nil, visanum=nil)
|
1026
1032
|
@ErrCode = errcode
|
1027
1033
|
@ErrMsg = errmsg
|
1028
1034
|
@IdCard = idcard
|
@@ -1049,6 +1055,8 @@ module TencentCloud
|
|
1049
1055
|
@LivenessMode = livenessmode
|
1050
1056
|
@NFCRequestIds = nfcrequestids
|
1051
1057
|
@NFCBillingCounts = nfcbillingcounts
|
1058
|
+
@PassNo = passno
|
1059
|
+
@VisaNum = visanum
|
1052
1060
|
end
|
1053
1061
|
|
1054
1062
|
def deserialize(params)
|
@@ -1085,6 +1093,8 @@ module TencentCloud
|
|
1085
1093
|
@LivenessMode = params['LivenessMode']
|
1086
1094
|
@NFCRequestIds = params['NFCRequestIds']
|
1087
1095
|
@NFCBillingCounts = params['NFCBillingCounts']
|
1096
|
+
@PassNo = params['PassNo']
|
1097
|
+
@VisaNum = params['VisaNum']
|
1088
1098
|
end
|
1089
1099
|
end
|
1090
1100
|
|
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.551
|
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-04-
|
11
|
+
date: 2023-04-14 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/tencentcloud-sdk-faceid.rb
|
36
37
|
- lib/v20180301/client.rb
|
37
38
|
- lib/v20180301/models.rb
|
38
|
-
- lib/tencentcloud-sdk-faceid.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|