tencentcloud-sdk-ess 3.0.609 → 3.0.611
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/client.rb +51 -0
- data/lib/v20201111/models.rb +294 -19
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 276d1a8f9cd898a9616c5d0279ac78a1f72e923e
|
4
|
+
data.tar.gz: 7a97b4814034283016a4c586f4bd8ecafb1deca5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73e27ed8d8f7d22575ed6520c0b7918421e3a1b898b0586b3dd4494aab2f616e9df7719023fec4fb39ee7d8cf7c18ca6f9c5121daeef35ba01fca7cd639f2f4a
|
7
|
+
data.tar.gz: 3aaa379824cc7ae357fac420b90138d3b0a557a69687b07bd848f7d3eaaa6a758297725fa53d4a9ee96172d0dee638322202ed48c4d1ad97e9e2974fea9d7640
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.611
|
data/lib/v20201111/client.rb
CHANGED
@@ -334,6 +334,57 @@ module TencentCloud
|
|
334
334
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
335
335
|
end
|
336
336
|
|
337
|
+
# 此接口(CreateFlowGroupByFiles)通过多文件创建合同组签署流程。<br/>
|
338
|
+
# PDF资源Id 通过上传文件接口获取
|
339
|
+
# 此接口合同组中的子合同必须都是文件发起的合同
|
340
|
+
|
341
|
+
# @param request: Request instance for CreateFlowGroupByFiles.
|
342
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateFlowGroupByFilesRequest`
|
343
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateFlowGroupByFilesResponse`
|
344
|
+
def CreateFlowGroupByFiles(request)
|
345
|
+
body = send_request('CreateFlowGroupByFiles', request.serialize)
|
346
|
+
response = JSON.parse(body)
|
347
|
+
if response['Response'].key?('Error') == false
|
348
|
+
model = CreateFlowGroupByFilesResponse.new
|
349
|
+
model.deserialize(response['Response'])
|
350
|
+
model
|
351
|
+
else
|
352
|
+
code = response['Response']['Error']['Code']
|
353
|
+
message = response['Response']['Error']['Message']
|
354
|
+
reqid = response['Response']['RequestId']
|
355
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
356
|
+
end
|
357
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
358
|
+
raise e
|
359
|
+
rescue StandardError => e
|
360
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
361
|
+
end
|
362
|
+
|
363
|
+
# 此接口(CreateFlowGroupByTemplates)通过多模板创建合同组签署流程。<br/>
|
364
|
+
# 此接口合同组中的子合同必须都是模板发起的合同。 <br/>目前最大仅支持50个子合同
|
365
|
+
|
366
|
+
# @param request: Request instance for CreateFlowGroupByTemplates.
|
367
|
+
# @type request: :class:`Tencentcloud::ess::V20201111::CreateFlowGroupByTemplatesRequest`
|
368
|
+
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateFlowGroupByTemplatesResponse`
|
369
|
+
def CreateFlowGroupByTemplates(request)
|
370
|
+
body = send_request('CreateFlowGroupByTemplates', request.serialize)
|
371
|
+
response = JSON.parse(body)
|
372
|
+
if response['Response'].key?('Error') == false
|
373
|
+
model = CreateFlowGroupByTemplatesResponse.new
|
374
|
+
model.deserialize(response['Response'])
|
375
|
+
model
|
376
|
+
else
|
377
|
+
code = response['Response']['Error']['Code']
|
378
|
+
message = response['Response']['Error']['Message']
|
379
|
+
reqid = response['Response']['RequestId']
|
380
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
381
|
+
end
|
382
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
383
|
+
raise e
|
384
|
+
rescue StandardError => e
|
385
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
386
|
+
end
|
387
|
+
|
337
388
|
# 指定需要批量催办的签署流程Id,批量催办合同,最多100个; 接口失败后返回错误信息
|
338
389
|
# 注意:
|
339
390
|
# 该接口不可直接调用,请联系客户经理申请使用
|
data/lib/v20201111/models.rb
CHANGED
@@ -86,10 +86,10 @@ module TencentCloud
|
|
86
86
|
# @type ApproverName: String
|
87
87
|
# @param ApproverMobile: 签署人的手机号,11位数字
|
88
88
|
# @type ApproverMobile: String
|
89
|
-
# @param SignComponents: 签署人的签署控件列表
|
90
|
-
# @type SignComponents: Array
|
91
89
|
# @param OrganizationName: 如果签署方是企业签署方,则为企业名
|
92
90
|
# @type OrganizationName: String
|
91
|
+
# @param SignComponents: 签署人的签署控件列表
|
92
|
+
# @type SignComponents: Array
|
93
93
|
# @param ApproverIdCardNumber: 签署人的身份证号
|
94
94
|
# @type ApproverIdCardNumber: String
|
95
95
|
# @param ApproverIdCardType: 签署人的身份证件类型
|
@@ -124,14 +124,14 @@ module TencentCloud
|
|
124
124
|
# @param ApproverNeedSignReview: 当前签署方进行签署操作是否需要企业内部审批,true 则为需要。为个人签署方时则由发起方企业审核。
|
125
125
|
# @type ApproverNeedSignReview: Boolean
|
126
126
|
|
127
|
-
attr_accessor :ApproverType, :ApproverName, :ApproverMobile, :
|
127
|
+
attr_accessor :ApproverType, :ApproverName, :ApproverMobile, :OrganizationName, :SignComponents, :ApproverIdCardNumber, :ApproverIdCardType, :NotifyType, :ApproverRole, :VerifyChannel, :PreReadTime, :UserId, :ApproverSource, :CustomApproverTag, :ApproverOption, :ApproverVerifyTypes, :ApproverSignTypes, :ApproverNeedSignReview
|
128
128
|
|
129
|
-
def initialize(approvertype=nil, approvername=nil, approvermobile=nil,
|
129
|
+
def initialize(approvertype=nil, approvername=nil, approvermobile=nil, organizationname=nil, signcomponents=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)
|
130
130
|
@ApproverType = approvertype
|
131
131
|
@ApproverName = approvername
|
132
132
|
@ApproverMobile = approvermobile
|
133
|
-
@SignComponents = signcomponents
|
134
133
|
@OrganizationName = organizationname
|
134
|
+
@SignComponents = signcomponents
|
135
135
|
@ApproverIdCardNumber = approveridcardnumber
|
136
136
|
@ApproverIdCardType = approveridcardtype
|
137
137
|
@NotifyType = notifytype
|
@@ -151,6 +151,7 @@ module TencentCloud
|
|
151
151
|
@ApproverType = params['ApproverType']
|
152
152
|
@ApproverName = params['ApproverName']
|
153
153
|
@ApproverMobile = params['ApproverMobile']
|
154
|
+
@OrganizationName = params['OrganizationName']
|
154
155
|
unless params['SignComponents'].nil?
|
155
156
|
@SignComponents = []
|
156
157
|
params['SignComponents'].each do |i|
|
@@ -159,7 +160,6 @@ module TencentCloud
|
|
159
160
|
@SignComponents << component_tmp
|
160
161
|
end
|
161
162
|
end
|
162
|
-
@OrganizationName = params['OrganizationName']
|
163
163
|
@ApproverIdCardNumber = params['ApproverIdCardNumber']
|
164
164
|
@ApproverIdCardType = params['ApproverIdCardType']
|
165
165
|
@NotifyType = params['NotifyType']
|
@@ -1354,6 +1354,154 @@ module TencentCloud
|
|
1354
1354
|
end
|
1355
1355
|
end
|
1356
1356
|
|
1357
|
+
# CreateFlowGroupByFiles请求参数结构体
|
1358
|
+
class CreateFlowGroupByFilesRequest < TencentCloud::Common::AbstractModel
|
1359
|
+
# @param Operator: 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId 代发合同
|
1360
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1361
|
+
# @param FlowGroupName: 合同(流程)组名称,最大长度200个字符
|
1362
|
+
# @type FlowGroupName: String
|
1363
|
+
# @param FlowGroupInfos: 合同(流程)组的子合同信息,支持2-50个子合同
|
1364
|
+
# @type FlowGroupInfos: Array
|
1365
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
1366
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1367
|
+
# @param FlowGroupOptions: 合同(流程)组的配置项信息。包括是否通知本企业签署方,是否通知其他签署方
|
1368
|
+
# @type FlowGroupOptions: :class:`Tencentcloud::Ess.v20201111.models.FlowGroupOptions`
|
1369
|
+
|
1370
|
+
attr_accessor :Operator, :FlowGroupName, :FlowGroupInfos, :Agent, :FlowGroupOptions
|
1371
|
+
|
1372
|
+
def initialize(operator=nil, flowgroupname=nil, flowgroupinfos=nil, agent=nil, flowgroupoptions=nil)
|
1373
|
+
@Operator = operator
|
1374
|
+
@FlowGroupName = flowgroupname
|
1375
|
+
@FlowGroupInfos = flowgroupinfos
|
1376
|
+
@Agent = agent
|
1377
|
+
@FlowGroupOptions = flowgroupoptions
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
def deserialize(params)
|
1381
|
+
unless params['Operator'].nil?
|
1382
|
+
@Operator = UserInfo.new
|
1383
|
+
@Operator.deserialize(params['Operator'])
|
1384
|
+
end
|
1385
|
+
@FlowGroupName = params['FlowGroupName']
|
1386
|
+
unless params['FlowGroupInfos'].nil?
|
1387
|
+
@FlowGroupInfos = []
|
1388
|
+
params['FlowGroupInfos'].each do |i|
|
1389
|
+
flowgroupinfo_tmp = FlowGroupInfo.new
|
1390
|
+
flowgroupinfo_tmp.deserialize(i)
|
1391
|
+
@FlowGroupInfos << flowgroupinfo_tmp
|
1392
|
+
end
|
1393
|
+
end
|
1394
|
+
unless params['Agent'].nil?
|
1395
|
+
@Agent = Agent.new
|
1396
|
+
@Agent.deserialize(params['Agent'])
|
1397
|
+
end
|
1398
|
+
unless params['FlowGroupOptions'].nil?
|
1399
|
+
@FlowGroupOptions = FlowGroupOptions.new
|
1400
|
+
@FlowGroupOptions.deserialize(params['FlowGroupOptions'])
|
1401
|
+
end
|
1402
|
+
end
|
1403
|
+
end
|
1404
|
+
|
1405
|
+
# CreateFlowGroupByFiles返回参数结构体
|
1406
|
+
class CreateFlowGroupByFilesResponse < TencentCloud::Common::AbstractModel
|
1407
|
+
# @param FlowGroupId: 合同(流程)组的合同组Id
|
1408
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1409
|
+
# @type FlowGroupId: String
|
1410
|
+
# @param FlowIds: 合同(流程)组中子合同列表.
|
1411
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1412
|
+
# @type FlowIds: Array
|
1413
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1414
|
+
# @type RequestId: String
|
1415
|
+
|
1416
|
+
attr_accessor :FlowGroupId, :FlowIds, :RequestId
|
1417
|
+
|
1418
|
+
def initialize(flowgroupid=nil, flowids=nil, requestid=nil)
|
1419
|
+
@FlowGroupId = flowgroupid
|
1420
|
+
@FlowIds = flowids
|
1421
|
+
@RequestId = requestid
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
def deserialize(params)
|
1425
|
+
@FlowGroupId = params['FlowGroupId']
|
1426
|
+
@FlowIds = params['FlowIds']
|
1427
|
+
@RequestId = params['RequestId']
|
1428
|
+
end
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# CreateFlowGroupByTemplates请求参数结构体
|
1432
|
+
class CreateFlowGroupByTemplatesRequest < TencentCloud::Common::AbstractModel
|
1433
|
+
# @param Operator: 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId 代发合同
|
1434
|
+
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
1435
|
+
# @param FlowGroupName: 合同组名称,最大长度200个字符
|
1436
|
+
# @type FlowGroupName: String
|
1437
|
+
# @param FlowGroupInfos: 合同组的子合同信息,支持2-50个子合同
|
1438
|
+
# @type FlowGroupInfos: Array
|
1439
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
1440
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1441
|
+
# @param FlowGroupOptions: 合同组的配置信息。包括是否通知本企业签署方,是否通知其他签署方
|
1442
|
+
# @type FlowGroupOptions: :class:`Tencentcloud::Ess.v20201111.models.FlowGroupOptions`
|
1443
|
+
|
1444
|
+
attr_accessor :Operator, :FlowGroupName, :FlowGroupInfos, :Agent, :FlowGroupOptions
|
1445
|
+
|
1446
|
+
def initialize(operator=nil, flowgroupname=nil, flowgroupinfos=nil, agent=nil, flowgroupoptions=nil)
|
1447
|
+
@Operator = operator
|
1448
|
+
@FlowGroupName = flowgroupname
|
1449
|
+
@FlowGroupInfos = flowgroupinfos
|
1450
|
+
@Agent = agent
|
1451
|
+
@FlowGroupOptions = flowgroupoptions
|
1452
|
+
end
|
1453
|
+
|
1454
|
+
def deserialize(params)
|
1455
|
+
unless params['Operator'].nil?
|
1456
|
+
@Operator = UserInfo.new
|
1457
|
+
@Operator.deserialize(params['Operator'])
|
1458
|
+
end
|
1459
|
+
@FlowGroupName = params['FlowGroupName']
|
1460
|
+
unless params['FlowGroupInfos'].nil?
|
1461
|
+
@FlowGroupInfos = []
|
1462
|
+
params['FlowGroupInfos'].each do |i|
|
1463
|
+
flowgroupinfo_tmp = FlowGroupInfo.new
|
1464
|
+
flowgroupinfo_tmp.deserialize(i)
|
1465
|
+
@FlowGroupInfos << flowgroupinfo_tmp
|
1466
|
+
end
|
1467
|
+
end
|
1468
|
+
unless params['Agent'].nil?
|
1469
|
+
@Agent = Agent.new
|
1470
|
+
@Agent.deserialize(params['Agent'])
|
1471
|
+
end
|
1472
|
+
unless params['FlowGroupOptions'].nil?
|
1473
|
+
@FlowGroupOptions = FlowGroupOptions.new
|
1474
|
+
@FlowGroupOptions.deserialize(params['FlowGroupOptions'])
|
1475
|
+
end
|
1476
|
+
end
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
# CreateFlowGroupByTemplates返回参数结构体
|
1480
|
+
class CreateFlowGroupByTemplatesResponse < TencentCloud::Common::AbstractModel
|
1481
|
+
# @param FlowGroupId: 合同(流程)组的合同组Id
|
1482
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1483
|
+
# @type FlowGroupId: String
|
1484
|
+
# @param FlowIds: 合同(流程)组中子合同列表.
|
1485
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1486
|
+
# @type FlowIds: Array
|
1487
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1488
|
+
# @type RequestId: String
|
1489
|
+
|
1490
|
+
attr_accessor :FlowGroupId, :FlowIds, :RequestId
|
1491
|
+
|
1492
|
+
def initialize(flowgroupid=nil, flowids=nil, requestid=nil)
|
1493
|
+
@FlowGroupId = flowgroupid
|
1494
|
+
@FlowIds = flowids
|
1495
|
+
@RequestId = requestid
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
def deserialize(params)
|
1499
|
+
@FlowGroupId = params['FlowGroupId']
|
1500
|
+
@FlowIds = params['FlowIds']
|
1501
|
+
@RequestId = params['RequestId']
|
1502
|
+
end
|
1503
|
+
end
|
1504
|
+
|
1357
1505
|
# CreateFlowReminds请求参数结构体
|
1358
1506
|
class CreateFlowRemindsRequest < TencentCloud::Common::AbstractModel
|
1359
1507
|
# @param Operator: 调用方用户信息,userId 必填
|
@@ -1561,9 +1709,13 @@ module TencentCloud
|
|
1561
1709
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1562
1710
|
# @param RecipientId: 审核签署节点使用 非必填 如果填写则审核该签署节点。给个人审核时必填。
|
1563
1711
|
# @type RecipientId: String
|
1564
|
-
# @param OperateType:
|
1565
|
-
|
1566
|
-
#
|
1712
|
+
# @param OperateType: 操作类型:(接口通过该字段区分操作类型)
|
1713
|
+
|
1714
|
+
# SignReview:签署审核
|
1715
|
+
# CreateReview:发起审核
|
1716
|
+
|
1717
|
+
# 默认:SignReview;SignReview:签署审核
|
1718
|
+
|
1567
1719
|
# 该字段不传或者为空,则默认为SignReview签署审核,走签署审核流程
|
1568
1720
|
# 若发起个人审核,则指定该字段为:SignReview(注意,给个人审核时,需联系客户经理开白使用)
|
1569
1721
|
# @type OperateType: String
|
@@ -2245,6 +2397,8 @@ module TencentCloud
|
|
2245
2397
|
# @type EndPoint: String
|
2246
2398
|
# @param FlowId: 签署流程编号 (PathType=1时必传)
|
2247
2399
|
# @type FlowId: String
|
2400
|
+
# @param FlowGroupId: 合同组ID
|
2401
|
+
# @type FlowGroupId: String
|
2248
2402
|
# @param PathType: 跳转页面 1: 小程序合同详情 2: 小程序合同列表页 0: 不传, 默认主页
|
2249
2403
|
# @type PathType: Integer
|
2250
2404
|
# @param AutoJumpBack: 是否自动回跳 true:是, false:否。该参数只针对"APP" 类型的签署链接有效
|
@@ -2252,15 +2406,16 @@ module TencentCloud
|
|
2252
2406
|
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
2253
2407
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2254
2408
|
|
2255
|
-
attr_accessor :Operator, :OrganizationName, :Name, :Mobile, :EndPoint, :FlowId, :PathType, :AutoJumpBack, :Agent
|
2409
|
+
attr_accessor :Operator, :OrganizationName, :Name, :Mobile, :EndPoint, :FlowId, :FlowGroupId, :PathType, :AutoJumpBack, :Agent
|
2256
2410
|
|
2257
|
-
def initialize(operator=nil, organizationname=nil, name=nil, mobile=nil, endpoint=nil, flowid=nil, pathtype=nil, autojumpback=nil, agent=nil)
|
2411
|
+
def initialize(operator=nil, organizationname=nil, name=nil, mobile=nil, endpoint=nil, flowid=nil, flowgroupid=nil, pathtype=nil, autojumpback=nil, agent=nil)
|
2258
2412
|
@Operator = operator
|
2259
2413
|
@OrganizationName = organizationname
|
2260
2414
|
@Name = name
|
2261
2415
|
@Mobile = mobile
|
2262
2416
|
@EndPoint = endpoint
|
2263
2417
|
@FlowId = flowid
|
2418
|
+
@FlowGroupId = flowgroupid
|
2264
2419
|
@PathType = pathtype
|
2265
2420
|
@AutoJumpBack = autojumpback
|
2266
2421
|
@Agent = agent
|
@@ -2276,6 +2431,7 @@ module TencentCloud
|
|
2276
2431
|
@Mobile = params['Mobile']
|
2277
2432
|
@EndPoint = params['EndPoint']
|
2278
2433
|
@FlowId = params['FlowId']
|
2434
|
+
@FlowGroupId = params['FlowGroupId']
|
2279
2435
|
@PathType = params['PathType']
|
2280
2436
|
@AutoJumpBack = params['AutoJumpBack']
|
2281
2437
|
unless params['Agent'].nil?
|
@@ -3219,31 +3375,35 @@ module TencentCloud
|
|
3219
3375
|
|
3220
3376
|
# DescribeFlowInfo请求参数结构体
|
3221
3377
|
class DescribeFlowInfoRequest < TencentCloud::Common::AbstractModel
|
3222
|
-
# @param FlowIds: 需要查询的流程ID列表,限制最大100个
|
3223
|
-
# @type FlowIds: Array
|
3224
3378
|
# @param Operator: 调用方用户信息,userId 必填
|
3225
3379
|
# @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
|
3380
|
+
# @param FlowIds: 需要查询的流程ID列表,限制最大100个
|
3381
|
+
# @type FlowIds: Array
|
3226
3382
|
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
3227
3383
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
3384
|
+
# @param FlowGroupId: 合同组ID
|
3385
|
+
# @type FlowGroupId: String
|
3228
3386
|
|
3229
|
-
attr_accessor :FlowIds, :
|
3387
|
+
attr_accessor :Operator, :FlowIds, :Agent, :FlowGroupId
|
3230
3388
|
|
3231
|
-
def initialize(
|
3232
|
-
@FlowIds = flowids
|
3389
|
+
def initialize(operator=nil, flowids=nil, agent=nil, flowgroupid=nil)
|
3233
3390
|
@Operator = operator
|
3391
|
+
@FlowIds = flowids
|
3234
3392
|
@Agent = agent
|
3393
|
+
@FlowGroupId = flowgroupid
|
3235
3394
|
end
|
3236
3395
|
|
3237
3396
|
def deserialize(params)
|
3238
|
-
@FlowIds = params['FlowIds']
|
3239
3397
|
unless params['Operator'].nil?
|
3240
3398
|
@Operator = UserInfo.new
|
3241
3399
|
@Operator.deserialize(params['Operator'])
|
3242
3400
|
end
|
3401
|
+
@FlowIds = params['FlowIds']
|
3243
3402
|
unless params['Agent'].nil?
|
3244
3403
|
@Agent = Agent.new
|
3245
3404
|
@Agent.deserialize(params['Agent'])
|
3246
3405
|
end
|
3406
|
+
@FlowGroupId = params['FlowGroupId']
|
3247
3407
|
end
|
3248
3408
|
end
|
3249
3409
|
|
@@ -3251,13 +3411,19 @@ module TencentCloud
|
|
3251
3411
|
class DescribeFlowInfoResponse < TencentCloud::Common::AbstractModel
|
3252
3412
|
# @param FlowDetailInfos: 签署流程信息
|
3253
3413
|
# @type FlowDetailInfos: Array
|
3414
|
+
# @param FlowGroupId: 合同组ID
|
3415
|
+
# @type FlowGroupId: String
|
3416
|
+
# @param FlowGroupName: 合同组名称
|
3417
|
+
# @type FlowGroupName: String
|
3254
3418
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3255
3419
|
# @type RequestId: String
|
3256
3420
|
|
3257
|
-
attr_accessor :FlowDetailInfos, :RequestId
|
3421
|
+
attr_accessor :FlowDetailInfos, :FlowGroupId, :FlowGroupName, :RequestId
|
3258
3422
|
|
3259
|
-
def initialize(flowdetailinfos=nil, requestid=nil)
|
3423
|
+
def initialize(flowdetailinfos=nil, flowgroupid=nil, flowgroupname=nil, requestid=nil)
|
3260
3424
|
@FlowDetailInfos = flowdetailinfos
|
3425
|
+
@FlowGroupId = flowgroupid
|
3426
|
+
@FlowGroupName = flowgroupname
|
3261
3427
|
@RequestId = requestid
|
3262
3428
|
end
|
3263
3429
|
|
@@ -3270,6 +3436,8 @@ module TencentCloud
|
|
3270
3436
|
@FlowDetailInfos << flowdetailinfo_tmp
|
3271
3437
|
end
|
3272
3438
|
end
|
3439
|
+
@FlowGroupId = params['FlowGroupId']
|
3440
|
+
@FlowGroupName = params['FlowGroupName']
|
3273
3441
|
@RequestId = params['RequestId']
|
3274
3442
|
end
|
3275
3443
|
end
|
@@ -4648,6 +4816,113 @@ module TencentCloud
|
|
4648
4816
|
end
|
4649
4817
|
end
|
4650
4818
|
|
4819
|
+
# 此结构体(FlowGroupInfo)描述的是合同组(流程组)的单个合同(流程)信息
|
4820
|
+
class FlowGroupInfo < TencentCloud::Common::AbstractModel
|
4821
|
+
# @param FlowName: 合同(流程)的名称
|
4822
|
+
# @type FlowName: String
|
4823
|
+
# @param Approvers: 合同(流程)的签署方信息
|
4824
|
+
# @type Approvers: Array
|
4825
|
+
# @param FileIds: 发起合同(流程)的资源Id,此资源必须是PDF文件,来自UploadFiles,使用文件发起合同(流程)组时必传
|
4826
|
+
# @type FileIds: Array
|
4827
|
+
# @param TemplateId: 发起合同(流程)的模板Id,用模板发起合同(流程)组时必填
|
4828
|
+
# @type TemplateId: String
|
4829
|
+
# @param FlowType: 合同(流程)的类型
|
4830
|
+
# @type FlowType: String
|
4831
|
+
# @param FlowDescription: 合同(流程)的描述
|
4832
|
+
# @type FlowDescription: String
|
4833
|
+
# @param Deadline: 合同(流程)的截止时间戳,单位秒。默认是一年
|
4834
|
+
# @type Deadline: Integer
|
4835
|
+
# @param CallbackUrl: 合同(流程)的回调地址
|
4836
|
+
# @type CallbackUrl: String
|
4837
|
+
# @param UserData: 第三方平台传递过来的信息, 限制1024字符 格式必须是base64的
|
4838
|
+
# @type UserData: String
|
4839
|
+
# @param Unordered: 合同(流程)的签署是否是无序签, true - 无序。 false - 有序, 默认
|
4840
|
+
# @type Unordered: Boolean
|
4841
|
+
# @param Components: 合同(流程)发起方的填写控件,用户
|
4842
|
+
# @type Components: Array
|
4843
|
+
# @param NeedSignReview: 本企业(发起方)是否需要签署审批,若需要审批则只允许查看不允许签署,需要您调用接口CreateFlowSignReview提交审批结果。
|
4844
|
+
# @type NeedSignReview: Boolean
|
4845
|
+
# @param AutoSignScene: 本企业(发起方)自动签署,需要您在发起合同时给印章控件指定自动签的印章。
|
4846
|
+
# @type AutoSignScene: String
|
4847
|
+
|
4848
|
+
attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene
|
4849
|
+
|
4850
|
+
def initialize(flowname=nil, approvers=nil, fileids=nil, templateid=nil, flowtype=nil, flowdescription=nil, deadline=nil, callbackurl=nil, userdata=nil, unordered=nil, components=nil, needsignreview=nil, autosignscene=nil)
|
4851
|
+
@FlowName = flowname
|
4852
|
+
@Approvers = approvers
|
4853
|
+
@FileIds = fileids
|
4854
|
+
@TemplateId = templateid
|
4855
|
+
@FlowType = flowtype
|
4856
|
+
@FlowDescription = flowdescription
|
4857
|
+
@Deadline = deadline
|
4858
|
+
@CallbackUrl = callbackurl
|
4859
|
+
@UserData = userdata
|
4860
|
+
@Unordered = unordered
|
4861
|
+
@Components = components
|
4862
|
+
@NeedSignReview = needsignreview
|
4863
|
+
@AutoSignScene = autosignscene
|
4864
|
+
end
|
4865
|
+
|
4866
|
+
def deserialize(params)
|
4867
|
+
@FlowName = params['FlowName']
|
4868
|
+
unless params['Approvers'].nil?
|
4869
|
+
@Approvers = []
|
4870
|
+
params['Approvers'].each do |i|
|
4871
|
+
approverinfo_tmp = ApproverInfo.new
|
4872
|
+
approverinfo_tmp.deserialize(i)
|
4873
|
+
@Approvers << approverinfo_tmp
|
4874
|
+
end
|
4875
|
+
end
|
4876
|
+
@FileIds = params['FileIds']
|
4877
|
+
@TemplateId = params['TemplateId']
|
4878
|
+
@FlowType = params['FlowType']
|
4879
|
+
@FlowDescription = params['FlowDescription']
|
4880
|
+
@Deadline = params['Deadline']
|
4881
|
+
@CallbackUrl = params['CallbackUrl']
|
4882
|
+
@UserData = params['UserData']
|
4883
|
+
@Unordered = params['Unordered']
|
4884
|
+
unless params['Components'].nil?
|
4885
|
+
@Components = []
|
4886
|
+
params['Components'].each do |i|
|
4887
|
+
component_tmp = Component.new
|
4888
|
+
component_tmp.deserialize(i)
|
4889
|
+
@Components << component_tmp
|
4890
|
+
end
|
4891
|
+
end
|
4892
|
+
@NeedSignReview = params['NeedSignReview']
|
4893
|
+
@AutoSignScene = params['AutoSignScene']
|
4894
|
+
end
|
4895
|
+
end
|
4896
|
+
|
4897
|
+
# 此结构体(FlowGroupOptions)描述的是合同组的个性化配置,支持控制是否发送短信、未实名个人签署方查看合同组时是否需要实名认证(仅在合同组文件发起配置时生效)
|
4898
|
+
class FlowGroupOptions < TencentCloud::Common::AbstractModel
|
4899
|
+
# @param ApproverVerifyType: 发起合同(流程)组的合同(流程)签署人校验方式
|
4900
|
+
# VerifyCheck: 人脸识别(默认)
|
4901
|
+
# MobileCheck:手机号验证
|
4902
|
+
# 参数说明:此参数仅在合同组文件发起有效,可选人脸识别或手机号验证两种方式,若选择后者,未实名个人签署方在签署合同时,无需经过实名认证和意愿确认两次人脸识别,该能力仅适用于个人签署方。
|
4903
|
+
# @type ApproverVerifyType: String
|
4904
|
+
# @param SelfOrganizationApproverNotifyType: 发起合同(流程)组本方企业经办人通知方式
|
4905
|
+
# 签署通知类型:sms--短信,none--不通知
|
4906
|
+
# @type SelfOrganizationApproverNotifyType: String
|
4907
|
+
# @param OtherApproverNotifyType: 发起合同(流程)组他方经办人通知方式
|
4908
|
+
# 签署通知类型:sms--短信,none--不通知
|
4909
|
+
# @type OtherApproverNotifyType: String
|
4910
|
+
|
4911
|
+
attr_accessor :ApproverVerifyType, :SelfOrganizationApproverNotifyType, :OtherApproverNotifyType
|
4912
|
+
|
4913
|
+
def initialize(approververifytype=nil, selforganizationapprovernotifytype=nil, otherapprovernotifytype=nil)
|
4914
|
+
@ApproverVerifyType = approververifytype
|
4915
|
+
@SelfOrganizationApproverNotifyType = selforganizationapprovernotifytype
|
4916
|
+
@OtherApproverNotifyType = otherapprovernotifytype
|
4917
|
+
end
|
4918
|
+
|
4919
|
+
def deserialize(params)
|
4920
|
+
@ApproverVerifyType = params['ApproverVerifyType']
|
4921
|
+
@SelfOrganizationApproverNotifyType = params['SelfOrganizationApproverNotifyType']
|
4922
|
+
@OtherApproverNotifyType = params['OtherApproverNotifyType']
|
4923
|
+
end
|
4924
|
+
end
|
4925
|
+
|
4651
4926
|
# 电子文档的控件填充信息。按照控件类型进行相应的填充。
|
4652
4927
|
|
4653
4928
|
# 【数据表格传参说明】
|
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.611
|
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-07-
|
11
|
+
date: 2023-07-12 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-ess.rb
|
37
|
-
- lib/v20201111/client.rb
|
38
36
|
- lib/v20201111/models.rb
|
37
|
+
- lib/v20201111/client.rb
|
38
|
+
- lib/tencentcloud-sdk-ess.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|