tencentcloud-sdk-ess 3.0.601 → 3.0.603
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/v20201111/models.rb +54 -14
- 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: 16a65096356ebea060794f0ee2e84a94aba4fe1b
|
4
|
+
data.tar.gz: 5ea4ff33553da4a4cc4b75c4aa8659c33fc155f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58e7f2e2143dc69f0ceae804202a9e4346def28bdca248b916d29cf0f2ded2e0afab0677dbe58a20a4f3a9a91dd90ed113191a1086743c0b06d45d9415290422
|
7
|
+
data.tar.gz: 6a5d17a9032fb35ae9caf95182ea8bcef7d1677ddc81ce02cfaf6d4ab93d57e2446bc94d7d98cb57d1333cfb0f90675c6d8617c6dd3cbeb788d5addb0f18994c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.603
|
data/lib/v20201111/models.rb
CHANGED
@@ -121,10 +121,12 @@ module TencentCloud
|
|
121
121
|
# 1-人脸认证 2-签署密码 3-运营商三要素(默认为1,2)
|
122
122
|
# 合同签署认证方式的优先级 verifyChannel>approverSignTypes
|
123
123
|
# @type ApproverSignTypes: Array
|
124
|
+
# @param ApproverNeedSignReview: 当前签署方进行签署操作是否需要企业内部审批,true 则为需要。为个人签署方时则由发起方企业审核。
|
125
|
+
# @type ApproverNeedSignReview: Boolean
|
124
126
|
|
125
|
-
attr_accessor :ApproverType, :ApproverName, :ApproverMobile, :SignComponents, :OrganizationName, :ApproverIdCardNumber, :ApproverIdCardType, :NotifyType, :ApproverRole, :VerifyChannel, :PreReadTime, :UserId, :ApproverSource, :CustomApproverTag, :ApproverOption, :ApproverVerifyTypes, :ApproverSignTypes
|
127
|
+
attr_accessor :ApproverType, :ApproverName, :ApproverMobile, :SignComponents, :OrganizationName, :ApproverIdCardNumber, :ApproverIdCardType, :NotifyType, :ApproverRole, :VerifyChannel, :PreReadTime, :UserId, :ApproverSource, :CustomApproverTag, :ApproverOption, :ApproverVerifyTypes, :ApproverSignTypes, :ApproverNeedSignReview
|
126
128
|
|
127
|
-
def initialize(approvertype=nil, approvername=nil, approvermobile=nil, signcomponents=nil, organizationname=nil, approveridcardnumber=nil, approveridcardtype=nil, notifytype=nil, approverrole=nil, verifychannel=nil, prereadtime=nil, userid=nil, approversource=nil, customapprovertag=nil, approveroption=nil, approververifytypes=nil, approversigntypes=nil)
|
129
|
+
def initialize(approvertype=nil, approvername=nil, approvermobile=nil, signcomponents=nil, organizationname=nil, approveridcardnumber=nil, approveridcardtype=nil, notifytype=nil, approverrole=nil, verifychannel=nil, prereadtime=nil, userid=nil, approversource=nil, customapprovertag=nil, approveroption=nil, approververifytypes=nil, approversigntypes=nil, approverneedsignreview=nil)
|
128
130
|
@ApproverType = approvertype
|
129
131
|
@ApproverName = approvername
|
130
132
|
@ApproverMobile = approvermobile
|
@@ -142,6 +144,7 @@ module TencentCloud
|
|
142
144
|
@ApproverOption = approveroption
|
143
145
|
@ApproverVerifyTypes = approververifytypes
|
144
146
|
@ApproverSignTypes = approversigntypes
|
147
|
+
@ApproverNeedSignReview = approverneedsignreview
|
145
148
|
end
|
146
149
|
|
147
150
|
def deserialize(params)
|
@@ -172,6 +175,7 @@ module TencentCloud
|
|
172
175
|
end
|
173
176
|
@ApproverVerifyTypes = params['ApproverVerifyTypes']
|
174
177
|
@ApproverSignTypes = params['ApproverSignTypes']
|
178
|
+
@ApproverNeedSignReview = params['ApproverNeedSignReview']
|
175
179
|
end
|
176
180
|
end
|
177
181
|
|
@@ -547,14 +551,17 @@ module TencentCloud
|
|
547
551
|
# 0--可查看
|
548
552
|
# 1--可查看也可下载
|
549
553
|
# @type CcPermission: Integer
|
554
|
+
# @param NotifyType: 关注方通知类型:sms--短信,none--不通知
|
555
|
+
# @type NotifyType: String
|
550
556
|
|
551
|
-
attr_accessor :Mobile, :Name, :CcType, :CcPermission
|
557
|
+
attr_accessor :Mobile, :Name, :CcType, :CcPermission, :NotifyType
|
552
558
|
|
553
|
-
def initialize(mobile=nil, name=nil, cctype=nil, ccpermission=nil)
|
559
|
+
def initialize(mobile=nil, name=nil, cctype=nil, ccpermission=nil, notifytype=nil)
|
554
560
|
@Mobile = mobile
|
555
561
|
@Name = name
|
556
562
|
@CcType = cctype
|
557
563
|
@CcPermission = ccpermission
|
564
|
+
@NotifyType = notifytype
|
558
565
|
end
|
559
566
|
|
560
567
|
def deserialize(params)
|
@@ -562,6 +569,7 @@ module TencentCloud
|
|
562
569
|
@Name = params['Name']
|
563
570
|
@CcType = params['CcType']
|
564
571
|
@CcPermission = params['CcPermission']
|
572
|
+
@NotifyType = params['NotifyType']
|
565
573
|
end
|
566
574
|
end
|
567
575
|
|
@@ -808,12 +816,15 @@ module TencentCloud
|
|
808
816
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
809
817
|
# @param FlowIds: 需要执行撤回的签署流程id数组,最多100个
|
810
818
|
# @type FlowIds: Array
|
819
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
820
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
811
821
|
|
812
|
-
attr_accessor :Operator, :FlowIds
|
822
|
+
attr_accessor :Operator, :FlowIds, :Agent
|
813
823
|
|
814
|
-
def initialize(operator=nil, flowids=nil)
|
824
|
+
def initialize(operator=nil, flowids=nil, agent=nil)
|
815
825
|
@Operator = operator
|
816
826
|
@FlowIds = flowids
|
827
|
+
@Agent = agent
|
817
828
|
end
|
818
829
|
|
819
830
|
def deserialize(params)
|
@@ -822,6 +833,10 @@ module TencentCloud
|
|
822
833
|
@Operator.deserialize(params['Operator'])
|
823
834
|
end
|
824
835
|
@FlowIds = params['FlowIds']
|
836
|
+
unless params['Agent'].nil?
|
837
|
+
@Agent = Agent.new
|
838
|
+
@Agent.deserialize(params['Agent'])
|
839
|
+
end
|
825
840
|
end
|
826
841
|
end
|
827
842
|
|
@@ -1283,12 +1298,15 @@ module TencentCloud
|
|
1283
1298
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1284
1299
|
# @param FlowId: 签署流程编号
|
1285
1300
|
# @type FlowId: String
|
1301
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
1302
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1286
1303
|
|
1287
|
-
attr_accessor :Operator, :FlowId
|
1304
|
+
attr_accessor :Operator, :FlowId, :Agent
|
1288
1305
|
|
1289
|
-
def initialize(operator=nil, flowid=nil)
|
1306
|
+
def initialize(operator=nil, flowid=nil, agent=nil)
|
1290
1307
|
@Operator = operator
|
1291
1308
|
@FlowId = flowid
|
1309
|
+
@Agent = agent
|
1292
1310
|
end
|
1293
1311
|
|
1294
1312
|
def deserialize(params)
|
@@ -1297,6 +1315,10 @@ module TencentCloud
|
|
1297
1315
|
@Operator.deserialize(params['Operator'])
|
1298
1316
|
end
|
1299
1317
|
@FlowId = params['FlowId']
|
1318
|
+
unless params['Agent'].nil?
|
1319
|
+
@Agent = Agent.new
|
1320
|
+
@Agent.deserialize(params['Agent'])
|
1321
|
+
end
|
1300
1322
|
end
|
1301
1323
|
end
|
1302
1324
|
|
@@ -1338,12 +1360,15 @@ module TencentCloud
|
|
1338
1360
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1339
1361
|
# @param FlowIds: 需要执行催办的签署流程id数组,最多100个
|
1340
1362
|
# @type FlowIds: Array
|
1363
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
1364
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1341
1365
|
|
1342
|
-
attr_accessor :Operator, :FlowIds
|
1366
|
+
attr_accessor :Operator, :FlowIds, :Agent
|
1343
1367
|
|
1344
|
-
def initialize(operator=nil, flowids=nil)
|
1368
|
+
def initialize(operator=nil, flowids=nil, agent=nil)
|
1345
1369
|
@Operator = operator
|
1346
1370
|
@FlowIds = flowids
|
1371
|
+
@Agent = agent
|
1347
1372
|
end
|
1348
1373
|
|
1349
1374
|
def deserialize(params)
|
@@ -1352,6 +1377,10 @@ module TencentCloud
|
|
1352
1377
|
@Operator.deserialize(params['Operator'])
|
1353
1378
|
end
|
1354
1379
|
@FlowIds = params['FlowIds']
|
1380
|
+
unless params['Agent'].nil?
|
1381
|
+
@Agent = Agent.new
|
1382
|
+
@Agent.deserialize(params['Agent'])
|
1383
|
+
end
|
1355
1384
|
end
|
1356
1385
|
end
|
1357
1386
|
|
@@ -3120,12 +3149,15 @@ module TencentCloud
|
|
3120
3149
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
3121
3150
|
# @param ReportId: 出证报告编号
|
3122
3151
|
# @type ReportId: String
|
3152
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
3153
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
3123
3154
|
|
3124
|
-
attr_accessor :Operator, :ReportId
|
3155
|
+
attr_accessor :Operator, :ReportId, :Agent
|
3125
3156
|
|
3126
|
-
def initialize(operator=nil, reportid=nil)
|
3157
|
+
def initialize(operator=nil, reportid=nil, agent=nil)
|
3127
3158
|
@Operator = operator
|
3128
3159
|
@ReportId = reportid
|
3160
|
+
@Agent = agent
|
3129
3161
|
end
|
3130
3162
|
|
3131
3163
|
def deserialize(params)
|
@@ -3134,6 +3166,10 @@ module TencentCloud
|
|
3134
3166
|
@Operator.deserialize(params['Operator'])
|
3135
3167
|
end
|
3136
3168
|
@ReportId = params['ReportId']
|
3169
|
+
unless params['Agent'].nil?
|
3170
|
+
@Agent = Agent.new
|
3171
|
+
@Agent.deserialize(params['Agent'])
|
3172
|
+
end
|
3137
3173
|
end
|
3138
3174
|
end
|
3139
3175
|
|
@@ -4448,13 +4484,15 @@ module TencentCloud
|
|
4448
4484
|
# - 发起流程时系统自动补充
|
4449
4485
|
# - 创建签署链接时,可以通过查询详情接口获得签署人的SignId,然后可传入此值为该签署人创建签署链接,无需再传姓名、手机号、证件号等其他信息
|
4450
4486
|
# @type SignId: String
|
4487
|
+
# @param ApproverNeedSignReview: 当前签署方进行签署操作是否需要企业内部审批,true 则为需要。为个人签署方时则由发起方企业审核。
|
4488
|
+
# @type ApproverNeedSignReview: Boolean
|
4451
4489
|
|
4452
|
-
attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId
|
4490
|
+
attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId, :ApproverNeedSignReview
|
4453
4491
|
extend Gem::Deprecate
|
4454
4492
|
deprecate :JumpUrl, :none, 2023, 6
|
4455
4493
|
deprecate :JumpUrl=, :none, 2023, 6
|
4456
4494
|
|
4457
|
-
def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil)
|
4495
|
+
def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil, approverneedsignreview=nil)
|
4458
4496
|
@ApproverType = approvertype
|
4459
4497
|
@OrganizationName = organizationname
|
4460
4498
|
@ApproverName = approvername
|
@@ -4474,6 +4512,7 @@ module TencentCloud
|
|
4474
4512
|
@ApproverOption = approveroption
|
4475
4513
|
@JumpUrl = jumpurl
|
4476
4514
|
@SignId = signid
|
4515
|
+
@ApproverNeedSignReview = approverneedsignreview
|
4477
4516
|
end
|
4478
4517
|
|
4479
4518
|
def deserialize(params)
|
@@ -4502,6 +4541,7 @@ module TencentCloud
|
|
4502
4541
|
end
|
4503
4542
|
@JumpUrl = params['JumpUrl']
|
4504
4543
|
@SignId = params['SignId']
|
4544
|
+
@ApproverNeedSignReview = params['ApproverNeedSignReview']
|
4505
4545
|
end
|
4506
4546
|
end
|
4507
4547
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ess
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.603
|
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-06-
|
11
|
+
date: 2023-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|