tencentcloud-sdk-ca 3.0.935 → 3.0.937

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20230228/models.rb +50 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb56a836a486cbd3d177b88a4045dc7baa2e4fd7
4
- data.tar.gz: 4f9114614a448a50da24fbda02cf2116ccb8211d
3
+ metadata.gz: bd1ebbd0747ec078c96250ee515e543421b0b9a6
4
+ data.tar.gz: cd539aa5bf78ddce7d93d4413ed9a1c7d8626938
5
5
  SHA512:
6
- metadata.gz: abce356147dcd7e260f5f8879e119d8d3adbfb5ab778a2035866d06933ab552a08831a420062c3053ef98845859613d01c305b5696cbb8b681dd0bd191f92faf
7
- data.tar.gz: e18627b7a1c7fa1e6c101e623928520977dfa735fb52c2ff7d7046f041bef9441386aebc1ec11544d4b8c5943fc185cae0694dd3adad63ef69ded159d60cdfad
6
+ metadata.gz: 3a55a4bfb01b35fb4bb01d379a2df24526a572db5c8d11a31e70eadc01352b94b60dfcbcb42cfdc4e5d77d7cf9afaa5e3fb4fa8c7ea6d210a148a4fdeab1604f
7
+ data.tar.gz: 9859fb5271e3783ce785fff85785ef8ab1df6af6dacfb47dce678316f6174ef978e558555dc26d6390dae5ea6bd5dae13b9c19167b00d3a1b60c93833321dcdf
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.935
1
+ 3.0.937
@@ -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.935
4
+ version: 3.0.937
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-03 00:00:00.000000000 Z
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