tencentcloud-sdk-ess 3.0.602 → 3.0.604
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 +56 -12
- 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: 9521df257f12fc7bea7483fad8720d7e07bb6d7a
|
4
|
+
data.tar.gz: 486e413e248067a27703a87659fcbbbd1a47a86d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 551caceec362af4bdc6e46bdfbac1445858d6a98dc65501d93bce79721cc251ac0ff12e131b9f4748429b1978270c6b39aebfb2f9b8d2e55358a29b5b1a09e70
|
7
|
+
data.tar.gz: b07cef5c028f7dec143559cbaf87a66241a0cb98af6be2ece5fb4f26ef2f0cae73887c66d9c3222b3e110e1ce7616dc490a6baaa5b7dafc3f2c875e72267118e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.604
|
data/lib/v20201111/models.rb
CHANGED
@@ -816,12 +816,15 @@ module TencentCloud
|
|
816
816
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
817
817
|
# @param FlowIds: 需要执行撤回的签署流程id数组,最多100个
|
818
818
|
# @type FlowIds: Array
|
819
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
820
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
819
821
|
|
820
|
-
attr_accessor :Operator, :FlowIds
|
822
|
+
attr_accessor :Operator, :FlowIds, :Agent
|
821
823
|
|
822
|
-
def initialize(operator=nil, flowids=nil)
|
824
|
+
def initialize(operator=nil, flowids=nil, agent=nil)
|
823
825
|
@Operator = operator
|
824
826
|
@FlowIds = flowids
|
827
|
+
@Agent = agent
|
825
828
|
end
|
826
829
|
|
827
830
|
def deserialize(params)
|
@@ -830,6 +833,10 @@ module TencentCloud
|
|
830
833
|
@Operator.deserialize(params['Operator'])
|
831
834
|
end
|
832
835
|
@FlowIds = params['FlowIds']
|
836
|
+
unless params['Agent'].nil?
|
837
|
+
@Agent = Agent.new
|
838
|
+
@Agent.deserialize(params['Agent'])
|
839
|
+
end
|
833
840
|
end
|
834
841
|
end
|
835
842
|
|
@@ -1291,12 +1298,15 @@ module TencentCloud
|
|
1291
1298
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1292
1299
|
# @param FlowId: 签署流程编号
|
1293
1300
|
# @type FlowId: String
|
1301
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
1302
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1294
1303
|
|
1295
|
-
attr_accessor :Operator, :FlowId
|
1304
|
+
attr_accessor :Operator, :FlowId, :Agent
|
1296
1305
|
|
1297
|
-
def initialize(operator=nil, flowid=nil)
|
1306
|
+
def initialize(operator=nil, flowid=nil, agent=nil)
|
1298
1307
|
@Operator = operator
|
1299
1308
|
@FlowId = flowid
|
1309
|
+
@Agent = agent
|
1300
1310
|
end
|
1301
1311
|
|
1302
1312
|
def deserialize(params)
|
@@ -1305,6 +1315,10 @@ module TencentCloud
|
|
1305
1315
|
@Operator.deserialize(params['Operator'])
|
1306
1316
|
end
|
1307
1317
|
@FlowId = params['FlowId']
|
1318
|
+
unless params['Agent'].nil?
|
1319
|
+
@Agent = Agent.new
|
1320
|
+
@Agent.deserialize(params['Agent'])
|
1321
|
+
end
|
1308
1322
|
end
|
1309
1323
|
end
|
1310
1324
|
|
@@ -1346,12 +1360,15 @@ module TencentCloud
|
|
1346
1360
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1347
1361
|
# @param FlowIds: 需要执行催办的签署流程id数组,最多100个
|
1348
1362
|
# @type FlowIds: Array
|
1363
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
1364
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1349
1365
|
|
1350
|
-
attr_accessor :Operator, :FlowIds
|
1366
|
+
attr_accessor :Operator, :FlowIds, :Agent
|
1351
1367
|
|
1352
|
-
def initialize(operator=nil, flowids=nil)
|
1368
|
+
def initialize(operator=nil, flowids=nil, agent=nil)
|
1353
1369
|
@Operator = operator
|
1354
1370
|
@FlowIds = flowids
|
1371
|
+
@Agent = agent
|
1355
1372
|
end
|
1356
1373
|
|
1357
1374
|
def deserialize(params)
|
@@ -1360,6 +1377,10 @@ module TencentCloud
|
|
1360
1377
|
@Operator.deserialize(params['Operator'])
|
1361
1378
|
end
|
1362
1379
|
@FlowIds = params['FlowIds']
|
1380
|
+
unless params['Agent'].nil?
|
1381
|
+
@Agent = Agent.new
|
1382
|
+
@Agent.deserialize(params['Agent'])
|
1383
|
+
end
|
1363
1384
|
end
|
1364
1385
|
end
|
1365
1386
|
|
@@ -2139,14 +2160,17 @@ module TencentCloud
|
|
2139
2160
|
# 默认使用原流程的签署人列表,当解除协议的签署人与原流程的签署人不能相同时(例如原流程签署人离职了),需要指定本企业其他已实名员工来替换原流程中的原签署人,注意需要指明原签署人的编号(ReceiptId,通过DescribeFlowInfo接口获取)来代表需要替换哪一个签署人
|
2140
2161
|
# 解除协议的签署人数量不能多于原流程的签署人数量
|
2141
2162
|
# @type ReleasedApprovers: Array
|
2163
|
+
# @param Deadline: 签署流程的签署截止时间。 值为unix时间戳,精确到秒,不传默认为当前时间七天后
|
2164
|
+
# @type Deadline: Integer
|
2142
2165
|
|
2143
|
-
attr_accessor :Operator, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers
|
2166
|
+
attr_accessor :Operator, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers, :Deadline
|
2144
2167
|
|
2145
|
-
def initialize(operator=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil)
|
2168
|
+
def initialize(operator=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil, deadline=nil)
|
2146
2169
|
@Operator = operator
|
2147
2170
|
@NeedRelievedFlowId = needrelievedflowid
|
2148
2171
|
@ReliveInfo = reliveinfo
|
2149
2172
|
@ReleasedApprovers = releasedapprovers
|
2173
|
+
@Deadline = deadline
|
2150
2174
|
end
|
2151
2175
|
|
2152
2176
|
def deserialize(params)
|
@@ -2167,6 +2191,7 @@ module TencentCloud
|
|
2167
2191
|
@ReleasedApprovers << releasedapprover_tmp
|
2168
2192
|
end
|
2169
2193
|
end
|
2194
|
+
@Deadline = params['Deadline']
|
2170
2195
|
end
|
2171
2196
|
end
|
2172
2197
|
|
@@ -3128,12 +3153,15 @@ module TencentCloud
|
|
3128
3153
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
3129
3154
|
# @param ReportId: 出证报告编号
|
3130
3155
|
# @type ReportId: String
|
3156
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
3157
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
3131
3158
|
|
3132
|
-
attr_accessor :Operator, :ReportId
|
3159
|
+
attr_accessor :Operator, :ReportId, :Agent
|
3133
3160
|
|
3134
|
-
def initialize(operator=nil, reportid=nil)
|
3161
|
+
def initialize(operator=nil, reportid=nil, agent=nil)
|
3135
3162
|
@Operator = operator
|
3136
3163
|
@ReportId = reportid
|
3164
|
+
@Agent = agent
|
3137
3165
|
end
|
3138
3166
|
|
3139
3167
|
def deserialize(params)
|
@@ -3142,6 +3170,10 @@ module TencentCloud
|
|
3142
3170
|
@Operator.deserialize(params['Operator'])
|
3143
3171
|
end
|
3144
3172
|
@ReportId = params['ReportId']
|
3173
|
+
unless params['Agent'].nil?
|
3174
|
+
@Agent = Agent.new
|
3175
|
+
@Agent.deserialize(params['Agent'])
|
3176
|
+
end
|
3145
3177
|
end
|
3146
3178
|
end
|
3147
3179
|
|
@@ -5423,6 +5455,8 @@ module TencentCloud
|
|
5423
5455
|
|
5424
5456
|
# 解除协议的签署人,如不指定,默认使用待解除流程(即原流程)中的签署人。
|
5425
5457
|
# 注意:不支持更换C端(个人身份类型)签署人,如果原流程中含有C端签署人,默认使用原流程中的该C端签署人。
|
5458
|
+
# 注意:目前不支持替换C端(个人身份类型)签署人,但是可以指定C端签署人的签署方自定义控件别名,具体见参数ApproverSignRole描述。
|
5459
|
+
# 注意:当指定C端签署人的签署方自定义控件别名不空时,除RelievedApproverReceiptId参数外,可以只参数ApproverSignRole。
|
5426
5460
|
class ReleasedApprover < TencentCloud::Common::AbstractModel
|
5427
5461
|
# @param Name: 签署人姓名,最大长度50个字符
|
5428
5462
|
# @type Name: String
|
@@ -5434,14 +5468,22 @@ module TencentCloud
|
|
5434
5468
|
# ORGANIZATION-企业
|
5435
5469
|
# ENTERPRISESERVER-企业静默签
|
5436
5470
|
# @type ApproverType: String
|
5471
|
+
# @param ApproverSignComponentType: 签署控件类型,支持自定义企业签署方的签署控件为“印章”或“签名”
|
5472
|
+
# - SIGN_SEAL-默认为印章控件类型
|
5473
|
+
# - SIGN_SIGNATURE-手写签名控件类型
|
5474
|
+
# @type ApproverSignComponentType: String
|
5475
|
+
# @param ApproverSignRole: 签署方自定义控件别名,最大长度20个字符
|
5476
|
+
# @type ApproverSignRole: String
|
5437
5477
|
|
5438
|
-
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType
|
5478
|
+
attr_accessor :Name, :Mobile, :RelievedApproverReceiptId, :ApproverType, :ApproverSignComponentType, :ApproverSignRole
|
5439
5479
|
|
5440
|
-
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil)
|
5480
|
+
def initialize(name=nil, mobile=nil, relievedapproverreceiptid=nil, approvertype=nil, approversigncomponenttype=nil, approversignrole=nil)
|
5441
5481
|
@Name = name
|
5442
5482
|
@Mobile = mobile
|
5443
5483
|
@RelievedApproverReceiptId = relievedapproverreceiptid
|
5444
5484
|
@ApproverType = approvertype
|
5485
|
+
@ApproverSignComponentType = approversigncomponenttype
|
5486
|
+
@ApproverSignRole = approversignrole
|
5445
5487
|
end
|
5446
5488
|
|
5447
5489
|
def deserialize(params)
|
@@ -5449,6 +5491,8 @@ module TencentCloud
|
|
5449
5491
|
@Mobile = params['Mobile']
|
5450
5492
|
@RelievedApproverReceiptId = params['RelievedApproverReceiptId']
|
5451
5493
|
@ApproverType = params['ApproverType']
|
5494
|
+
@ApproverSignComponentType = params['ApproverSignComponentType']
|
5495
|
+
@ApproverSignRole = params['ApproverSignRole']
|
5452
5496
|
end
|
5453
5497
|
end
|
5454
5498
|
|
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.604
|
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-
|
11
|
+
date: 2023-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,8 +33,8 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20201111/client.rb
|
37
36
|
- lib/v20201111/models.rb
|
37
|
+
- lib/v20201111/client.rb
|
38
38
|
- lib/tencentcloud-sdk-ess.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|