tencentcloud-sdk-ca 3.0.934 → 3.0.936
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20230228/models.rb +50 -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: b35da93d24574280b5a1c2800b387121d9b9c2fe
|
4
|
+
data.tar.gz: 09df523fada4b1f41e4adb7b18928f79da22776d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5984aeef3c2a5d82d1d0a851a42ef8caf1f72a3e2423119d9e200f08c2e6a5910bf750dffab2690c2d18e70be20ce96af99488d1e7f94e01952056fb03e26d5f
|
7
|
+
data.tar.gz: bea0fc04810aa43609a997f1d60dccd3b66fe51c3d6a3e2c6b885a6bfdbe3f6cc1faef81682b8f428da287bea049dfd471d948d54e97b86971ede6d47cc0e019
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.936
|
data/lib/v20230228/models.rb
CHANGED
@@ -17,6 +17,43 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Ca
|
19
19
|
module V20230228
|
20
|
+
# 证书用户信息和身份鉴别信息。则该字段无需传入,默认为空。对电子签名者身份鉴别类型及措施有特殊展示要求的可使用该字段。
|
21
|
+
class CertificateIdentityUser < TencentCloud::Common::AbstractModel
|
22
|
+
# @param Name: 姓名
|
23
|
+
# @type Name: String
|
24
|
+
# @param IdentityUniqueId: 唯一身份id
|
25
|
+
# @type IdentityUniqueId: String
|
26
|
+
# @param IdCardNumber: 身份证号
|
27
|
+
# @type IdCardNumber: String
|
28
|
+
# @param IdentificationType: 身份鉴别类型
|
29
|
+
# 1:授权金融机构身份鉴别
|
30
|
+
# @type IdentificationType: String
|
31
|
+
# @param IdentificationMeasures: 身份鉴别措施
|
32
|
+
# 1、身份证鉴别
|
33
|
+
# 2、银行卡鉴别
|
34
|
+
# 3、支付账户密码验证
|
35
|
+
# 4、人脸识别验证
|
36
|
+
# @type IdentificationMeasures: Array
|
37
|
+
|
38
|
+
attr_accessor :Name, :IdentityUniqueId, :IdCardNumber, :IdentificationType, :IdentificationMeasures
|
39
|
+
|
40
|
+
def initialize(name=nil, identityuniqueid=nil, idcardnumber=nil, identificationtype=nil, identificationmeasures=nil)
|
41
|
+
@Name = name
|
42
|
+
@IdentityUniqueId = identityuniqueid
|
43
|
+
@IdCardNumber = idcardnumber
|
44
|
+
@IdentificationType = identificationtype
|
45
|
+
@IdentificationMeasures = identificationmeasures
|
46
|
+
end
|
47
|
+
|
48
|
+
def deserialize(params)
|
49
|
+
@Name = params['Name']
|
50
|
+
@IdentityUniqueId = params['IdentityUniqueId']
|
51
|
+
@IdCardNumber = params['IdCardNumber']
|
52
|
+
@IdentificationType = params['IdentificationType']
|
53
|
+
@IdentificationMeasures = params['IdentificationMeasures']
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
20
57
|
# CreateVerifyReport请求参数结构体
|
21
58
|
class CreateVerifyReportRequest < TencentCloud::Common::AbstractModel
|
22
59
|
# @param ApplyCustomerType: 申请者类型 1:个人,2:企业
|
@@ -31,16 +68,19 @@ module TencentCloud
|
|
31
68
|
# @type FileId: String
|
32
69
|
# @param ApplyEmail: 验签申请经办人邮箱
|
33
70
|
# @type ApplyEmail: String
|
71
|
+
# @param CertificateIdentityUsers: 证书用户身份及身份鉴别信息
|
72
|
+
# @type CertificateIdentityUsers: Array
|
34
73
|
|
35
|
-
attr_accessor :ApplyCustomerType, :ApplyCustomerName, :ApplyName, :ApplyMobile, :FileId, :ApplyEmail
|
74
|
+
attr_accessor :ApplyCustomerType, :ApplyCustomerName, :ApplyName, :ApplyMobile, :FileId, :ApplyEmail, :CertificateIdentityUsers
|
36
75
|
|
37
|
-
def initialize(applycustomertype=nil, applycustomername=nil, applyname=nil, applymobile=nil, fileid=nil, applyemail=nil)
|
76
|
+
def initialize(applycustomertype=nil, applycustomername=nil, applyname=nil, applymobile=nil, fileid=nil, applyemail=nil, certificateidentityusers=nil)
|
38
77
|
@ApplyCustomerType = applycustomertype
|
39
78
|
@ApplyCustomerName = applycustomername
|
40
79
|
@ApplyName = applyname
|
41
80
|
@ApplyMobile = applymobile
|
42
81
|
@FileId = fileid
|
43
82
|
@ApplyEmail = applyemail
|
83
|
+
@CertificateIdentityUsers = certificateidentityusers
|
44
84
|
end
|
45
85
|
|
46
86
|
def deserialize(params)
|
@@ -50,6 +90,14 @@ module TencentCloud
|
|
50
90
|
@ApplyMobile = params['ApplyMobile']
|
51
91
|
@FileId = params['FileId']
|
52
92
|
@ApplyEmail = params['ApplyEmail']
|
93
|
+
unless params['CertificateIdentityUsers'].nil?
|
94
|
+
@CertificateIdentityUsers = []
|
95
|
+
params['CertificateIdentityUsers'].each do |i|
|
96
|
+
certificateidentityuser_tmp = CertificateIdentityUser.new
|
97
|
+
certificateidentityuser_tmp.deserialize(i)
|
98
|
+
@CertificateIdentityUsers << certificateidentityuser_tmp
|
99
|
+
end
|
100
|
+
end
|
53
101
|
end
|
54
102
|
end
|
55
103
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ca
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.936
|
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-
|
11
|
+
date: 2024-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|