tencentcloud-sdk-essbasic 3.0.406 → 3.0.407
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/v20210526/client.rb +51 -1
- data/lib/v20210526/models.rb +213 -9
- 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: 75512571ccda6f1e273b0cbaa97a450e492fc969
|
4
|
+
data.tar.gz: d7201ca7d9241aea18bf266dd5767ccea4cf28fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 458575fd7f76f295166e07c15b50769732e46ad3f8c40110ac97fe0fca115adfe003f0e469322e3710845d42e605c14c112bec4aae9006aad528bf9ccb568207
|
7
|
+
data.tar.gz: 185acbd7bf9a75ca4af82a9d7d3d8a12869402e741b6aa6f8a588002a3ff9356e54c74cf6c47a33357f80fdf7dddc366789984157015ec5804a98e64d942a320
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.407
|
data/lib/v20210526/client.rb
CHANGED
@@ -29,6 +29,31 @@ module TencentCloud
|
|
29
29
|
end
|
30
30
|
|
31
31
|
|
32
|
+
# 指定需要批量撤销的签署流程Id,批量撤销合同
|
33
|
+
# 客户指定需要撤销的签署流程Id,最多100个,超过100不处理;接口失败后返回错误信息
|
34
|
+
|
35
|
+
# @param request: Request instance for ChannelBatchCancelFlows.
|
36
|
+
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelBatchCancelFlowsRequest`
|
37
|
+
# @rtype: :class:`Tencentcloud::essbasic::V20210526::ChannelBatchCancelFlowsResponse`
|
38
|
+
def ChannelBatchCancelFlows(request)
|
39
|
+
body = send_request('ChannelBatchCancelFlows', request.serialize)
|
40
|
+
response = JSON.parse(body)
|
41
|
+
if response['Response'].key?('Error') == false
|
42
|
+
model = ChannelBatchCancelFlowsResponse.new
|
43
|
+
model.deserialize(response['Response'])
|
44
|
+
model
|
45
|
+
else
|
46
|
+
code = response['Response']['Error']['Code']
|
47
|
+
message = response['Response']['Error']['Message']
|
48
|
+
reqid = response['Response']['RequestId']
|
49
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
50
|
+
end
|
51
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
52
|
+
raise e
|
53
|
+
rescue StandardError => e
|
54
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
55
|
+
end
|
56
|
+
|
32
57
|
# 此接口(ChannelCancelMultiFlowSignQRCode)用于取消一码多扫二维码。该接口对传入的二维码ID,若还在有效期内,可以提前失效。
|
33
58
|
|
34
59
|
# @param request: Request instance for ChannelCancelMultiFlowSignQRCode.
|
@@ -126,6 +151,30 @@ module TencentCloud
|
|
126
151
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
127
152
|
end
|
128
153
|
|
154
|
+
# 接口(ChannelCreateFlowGroupByFiles)用于通过多文件创建合同组签署流程。
|
155
|
+
|
156
|
+
# @param request: Request instance for ChannelCreateFlowGroupByFiles.
|
157
|
+
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateFlowGroupByFilesRequest`
|
158
|
+
# @rtype: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateFlowGroupByFilesResponse`
|
159
|
+
def ChannelCreateFlowGroupByFiles(request)
|
160
|
+
body = send_request('ChannelCreateFlowGroupByFiles', request.serialize)
|
161
|
+
response = JSON.parse(body)
|
162
|
+
if response['Response'].key?('Error') == false
|
163
|
+
model = ChannelCreateFlowGroupByFilesResponse.new
|
164
|
+
model.deserialize(response['Response'])
|
165
|
+
model
|
166
|
+
else
|
167
|
+
code = response['Response']['Error']['Code']
|
168
|
+
message = response['Response']['Error']['Message']
|
169
|
+
reqid = response['Response']['RequestId']
|
170
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
171
|
+
end
|
172
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
173
|
+
raise e
|
174
|
+
rescue StandardError => e
|
175
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
176
|
+
end
|
177
|
+
|
129
178
|
# 提交企业签署流程审批结果
|
130
179
|
|
131
180
|
# 在通过接口(CreateFlowsByTemplates 或者ChannelCreateFlowByFiles)创建签署流程时,若指定了参数 NeedSignReview 为true,则可以调用此接口提交企业内部签署审批结果。
|
@@ -202,7 +251,8 @@ module TencentCloud
|
|
202
251
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
203
252
|
end
|
204
253
|
|
205
|
-
#
|
254
|
+
# 【描述】:创建出证报告,返回报告 URL
|
255
|
+
# 【注意】:此接口需要通过添加白名单获取调用权限,请联系运营人员加白
|
206
256
|
|
207
257
|
# @param request: Request instance for CreateChannelFlowEvidenceReport.
|
208
258
|
# @type request: :class:`Tencentcloud::essbasic::V20210526::CreateChannelFlowEvidenceReportRequest`
|
data/lib/v20210526/models.rb
CHANGED
@@ -116,6 +116,56 @@ module TencentCloud
|
|
116
116
|
end
|
117
117
|
end
|
118
118
|
|
119
|
+
# ChannelBatchCancelFlows请求参数结构体
|
120
|
+
class ChannelBatchCancelFlowsRequest < TencentCloud::Common::AbstractModel
|
121
|
+
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
122
|
+
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
123
|
+
# @param FlowIds: 签署流程Id数组,最多100个,超过100不处理
|
124
|
+
# @type FlowIds: Array
|
125
|
+
# @param Operator: 操作人信息
|
126
|
+
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
127
|
+
|
128
|
+
attr_accessor :Agent, :FlowIds, :Operator
|
129
|
+
|
130
|
+
def initialize(agent=nil, flowids=nil, operator=nil)
|
131
|
+
@Agent = agent
|
132
|
+
@FlowIds = flowids
|
133
|
+
@Operator = operator
|
134
|
+
end
|
135
|
+
|
136
|
+
def deserialize(params)
|
137
|
+
unless params['Agent'].nil?
|
138
|
+
@Agent = Agent.new
|
139
|
+
@Agent.deserialize(params['Agent'])
|
140
|
+
end
|
141
|
+
@FlowIds = params['FlowIds']
|
142
|
+
unless params['Operator'].nil?
|
143
|
+
@Operator = UserInfo.new
|
144
|
+
@Operator.deserialize(params['Operator'])
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
# ChannelBatchCancelFlows返回参数结构体
|
150
|
+
class ChannelBatchCancelFlowsResponse < TencentCloud::Common::AbstractModel
|
151
|
+
# @param FailMessages: 签署流程批量撤销失败原因,错误信息与流程Id一一对应,如果部分流程不可撤销,不会返回错误信息,只会撤销可撤销流程
|
152
|
+
# @type FailMessages: Array
|
153
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
154
|
+
# @type RequestId: String
|
155
|
+
|
156
|
+
attr_accessor :FailMessages, :RequestId
|
157
|
+
|
158
|
+
def initialize(failmessages=nil, requestid=nil)
|
159
|
+
@FailMessages = failmessages
|
160
|
+
@RequestId = requestid
|
161
|
+
end
|
162
|
+
|
163
|
+
def deserialize(params)
|
164
|
+
@FailMessages = params['FailMessages']
|
165
|
+
@RequestId = params['RequestId']
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
119
169
|
# ChannelCancelMultiFlowSignQRCode请求参数结构体
|
120
170
|
class ChannelCancelMultiFlowSignQRCodeRequest < TencentCloud::Common::AbstractModel
|
121
171
|
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
@@ -394,6 +444,73 @@ module TencentCloud
|
|
394
444
|
end
|
395
445
|
end
|
396
446
|
|
447
|
+
# ChannelCreateFlowGroupByFiles请求参数结构体
|
448
|
+
class ChannelCreateFlowGroupByFilesRequest < TencentCloud::Common::AbstractModel
|
449
|
+
# @param FlowFileInfos: 每个子合同的发起所需的信息,数量限制2-100
|
450
|
+
# @type FlowFileInfos: Array
|
451
|
+
# @param FlowGroupName: 合同组名称,长度不超过200个字符
|
452
|
+
# @type FlowGroupName: String
|
453
|
+
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
454
|
+
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
455
|
+
# @param Operator: 操作者的信息
|
456
|
+
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
457
|
+
|
458
|
+
attr_accessor :FlowFileInfos, :FlowGroupName, :Agent, :Operator
|
459
|
+
|
460
|
+
def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, operator=nil)
|
461
|
+
@FlowFileInfos = flowfileinfos
|
462
|
+
@FlowGroupName = flowgroupname
|
463
|
+
@Agent = agent
|
464
|
+
@Operator = operator
|
465
|
+
end
|
466
|
+
|
467
|
+
def deserialize(params)
|
468
|
+
unless params['FlowFileInfos'].nil?
|
469
|
+
@FlowFileInfos = []
|
470
|
+
params['FlowFileInfos'].each do |i|
|
471
|
+
flowfileinfo_tmp = FlowFileInfo.new
|
472
|
+
flowfileinfo_tmp.deserialize(i)
|
473
|
+
@FlowFileInfos << flowfileinfo_tmp
|
474
|
+
end
|
475
|
+
end
|
476
|
+
@FlowGroupName = params['FlowGroupName']
|
477
|
+
unless params['Agent'].nil?
|
478
|
+
@Agent = Agent.new
|
479
|
+
@Agent.deserialize(params['Agent'])
|
480
|
+
end
|
481
|
+
unless params['Operator'].nil?
|
482
|
+
@Operator = UserInfo.new
|
483
|
+
@Operator.deserialize(params['Operator'])
|
484
|
+
end
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
488
|
+
# ChannelCreateFlowGroupByFiles返回参数结构体
|
489
|
+
class ChannelCreateFlowGroupByFilesResponse < TencentCloud::Common::AbstractModel
|
490
|
+
# @param FlowGroupId: 合同组ID
|
491
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
492
|
+
# @type FlowGroupId: String
|
493
|
+
# @param FlowIds: 子合同ID列表
|
494
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
495
|
+
# @type FlowIds: Array
|
496
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
497
|
+
# @type RequestId: String
|
498
|
+
|
499
|
+
attr_accessor :FlowGroupId, :FlowIds, :RequestId
|
500
|
+
|
501
|
+
def initialize(flowgroupid=nil, flowids=nil, requestid=nil)
|
502
|
+
@FlowGroupId = flowgroupid
|
503
|
+
@FlowIds = flowids
|
504
|
+
@RequestId = requestid
|
505
|
+
end
|
506
|
+
|
507
|
+
def deserialize(params)
|
508
|
+
@FlowGroupId = params['FlowGroupId']
|
509
|
+
@FlowIds = params['FlowIds']
|
510
|
+
@RequestId = params['RequestId']
|
511
|
+
end
|
512
|
+
end
|
513
|
+
|
397
514
|
# ChannelCreateFlowSignReview请求参数结构体
|
398
515
|
class ChannelCreateFlowSignReviewRequest < TencentCloud::Common::AbstractModel
|
399
516
|
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
@@ -1014,7 +1131,7 @@ module TencentCloud
|
|
1014
1131
|
class CreateSignUrlsRequest < TencentCloud::Common::AbstractModel
|
1015
1132
|
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
1016
1133
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
1017
|
-
# @param FlowIds: 签署流程编号数组,最多支持100个。
|
1134
|
+
# @param FlowIds: 签署流程编号数组,最多支持100个。(备注:该参数和合同组编号必须二选一)
|
1018
1135
|
# @type FlowIds: Array
|
1019
1136
|
# @param Endpoint: 签署链接类型:“WEIXINAPP”-直接跳小程序;“CHANNEL”-跳转H5页面;“APP”-第三方APP或小程序跳转电子签小程序;默认“WEIXINAPP”类型,即跳转至小程序;
|
1020
1137
|
# @type Endpoint: String
|
@@ -1042,10 +1159,12 @@ module TencentCloud
|
|
1042
1159
|
# @type JumpUrl: String
|
1043
1160
|
# @param Operator: 操作者的信息
|
1044
1161
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
1162
|
+
# @param FlowGroupId: 合同组编号(备注:该参数和合同(流程)编号数组必须二选一)
|
1163
|
+
# @type FlowGroupId: String
|
1045
1164
|
|
1046
|
-
attr_accessor :Agent, :FlowIds, :Endpoint, :GenerateType, :OrganizationName, :Name, :Mobile, :OrganizationOpenId, :OpenId, :AutoJumpBack, :JumpUrl, :Operator
|
1165
|
+
attr_accessor :Agent, :FlowIds, :Endpoint, :GenerateType, :OrganizationName, :Name, :Mobile, :OrganizationOpenId, :OpenId, :AutoJumpBack, :JumpUrl, :Operator, :FlowGroupId
|
1047
1166
|
|
1048
|
-
def initialize(agent=nil, flowids=nil, endpoint=nil, generatetype=nil, organizationname=nil, name=nil, mobile=nil, organizationopenid=nil, openid=nil, autojumpback=nil, jumpurl=nil, operator=nil)
|
1167
|
+
def initialize(agent=nil, flowids=nil, endpoint=nil, generatetype=nil, organizationname=nil, name=nil, mobile=nil, organizationopenid=nil, openid=nil, autojumpback=nil, jumpurl=nil, operator=nil, flowgroupid=nil)
|
1049
1168
|
@Agent = agent
|
1050
1169
|
@FlowIds = flowids
|
1051
1170
|
@Endpoint = endpoint
|
@@ -1058,6 +1177,7 @@ module TencentCloud
|
|
1058
1177
|
@AutoJumpBack = autojumpback
|
1059
1178
|
@JumpUrl = jumpurl
|
1060
1179
|
@Operator = operator
|
1180
|
+
@FlowGroupId = flowgroupid
|
1061
1181
|
end
|
1062
1182
|
|
1063
1183
|
def deserialize(params)
|
@@ -1079,6 +1199,7 @@ module TencentCloud
|
|
1079
1199
|
@Operator = UserInfo.new
|
1080
1200
|
@Operator.deserialize(params['Operator'])
|
1081
1201
|
end
|
1202
|
+
@FlowGroupId = params['FlowGroupId']
|
1082
1203
|
end
|
1083
1204
|
end
|
1084
1205
|
|
@@ -1118,16 +1239,20 @@ module TencentCloud
|
|
1118
1239
|
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
1119
1240
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
1120
1241
|
# @param FlowIds: 合同(流程)编号数组,最多支持100个。
|
1242
|
+
# (备注:该参数和合同组编号必须二选一)
|
1121
1243
|
# @type FlowIds: Array
|
1122
1244
|
# @param Operator: 操作者的信息
|
1123
1245
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
1246
|
+
# @param FlowGroupId: 合同组编号(备注:该参数和合同(流程)编号数组必须二选一)
|
1247
|
+
# @type FlowGroupId: String
|
1124
1248
|
|
1125
|
-
attr_accessor :Agent, :FlowIds, :Operator
|
1249
|
+
attr_accessor :Agent, :FlowIds, :Operator, :FlowGroupId
|
1126
1250
|
|
1127
|
-
def initialize(agent=nil, flowids=nil, operator=nil)
|
1251
|
+
def initialize(agent=nil, flowids=nil, operator=nil, flowgroupid=nil)
|
1128
1252
|
@Agent = agent
|
1129
1253
|
@FlowIds = flowids
|
1130
1254
|
@Operator = operator
|
1255
|
+
@FlowGroupId = flowgroupid
|
1131
1256
|
end
|
1132
1257
|
|
1133
1258
|
def deserialize(params)
|
@@ -1140,6 +1265,7 @@ module TencentCloud
|
|
1140
1265
|
@Operator = UserInfo.new
|
1141
1266
|
@Operator.deserialize(params['Operator'])
|
1142
1267
|
end
|
1268
|
+
@FlowGroupId = params['FlowGroupId']
|
1143
1269
|
end
|
1144
1270
|
end
|
1145
1271
|
|
@@ -1152,15 +1278,23 @@ module TencentCloud
|
|
1152
1278
|
# @param FlowInfo: 合同(签署流程)的具体详细描述信息
|
1153
1279
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1154
1280
|
# @type FlowInfo: Array
|
1281
|
+
# @param FlowGroupId: 合同组编号
|
1282
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1283
|
+
# @type FlowGroupId: String
|
1284
|
+
# @param FlowGroupName: 合同组名称
|
1285
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1286
|
+
# @type FlowGroupName: String
|
1155
1287
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1156
1288
|
# @type RequestId: String
|
1157
1289
|
|
1158
|
-
attr_accessor :ApplicationId, :ProxyOrganizationOpenId, :FlowInfo, :RequestId
|
1290
|
+
attr_accessor :ApplicationId, :ProxyOrganizationOpenId, :FlowInfo, :FlowGroupId, :FlowGroupName, :RequestId
|
1159
1291
|
|
1160
|
-
def initialize(applicationid=nil, proxyorganizationopenid=nil, flowinfo=nil, requestid=nil)
|
1292
|
+
def initialize(applicationid=nil, proxyorganizationopenid=nil, flowinfo=nil, flowgroupid=nil, flowgroupname=nil, requestid=nil)
|
1161
1293
|
@ApplicationId = applicationid
|
1162
1294
|
@ProxyOrganizationOpenId = proxyorganizationopenid
|
1163
1295
|
@FlowInfo = flowinfo
|
1296
|
+
@FlowGroupId = flowgroupid
|
1297
|
+
@FlowGroupName = flowgroupname
|
1164
1298
|
@RequestId = requestid
|
1165
1299
|
end
|
1166
1300
|
|
@@ -1175,6 +1309,8 @@ module TencentCloud
|
|
1175
1309
|
@FlowInfo << flowdetailinfo_tmp
|
1176
1310
|
end
|
1177
1311
|
end
|
1312
|
+
@FlowGroupId = params['FlowGroupId']
|
1313
|
+
@FlowGroupName = params['FlowGroupName']
|
1178
1314
|
@RequestId = params['RequestId']
|
1179
1315
|
end
|
1180
1316
|
end
|
@@ -1639,6 +1775,69 @@ module TencentCloud
|
|
1639
1775
|
end
|
1640
1776
|
end
|
1641
1777
|
|
1778
|
+
# 合同组中每个子合同的发起信息
|
1779
|
+
class FlowFileInfo < TencentCloud::Common::AbstractModel
|
1780
|
+
# @param FileIds: 签署文件资源Id列表,目前仅支持单个文件
|
1781
|
+
# @type FileIds: Array
|
1782
|
+
# @param FlowName: 签署流程名称,长度不超过200个字符
|
1783
|
+
# @type FlowName: String
|
1784
|
+
# @param FlowApprovers: 签署流程签约方列表,最多不超过5个参与方
|
1785
|
+
# @type FlowApprovers: Array
|
1786
|
+
# @param Deadline: 签署流程截止时间,十位数时间戳,最大值为33162419560,即3020年
|
1787
|
+
# @type Deadline: Integer
|
1788
|
+
# @param FlowDescription: 签署流程的描述,长度不超过1000个字符
|
1789
|
+
# @type FlowDescription: String
|
1790
|
+
# @param FlowType: 签署流程的类型,长度不超过255个字符
|
1791
|
+
# @type FlowType: String
|
1792
|
+
# @param CallbackUrl: 签署流程回调地址,长度不超过255个字符
|
1793
|
+
# @type CallbackUrl: String
|
1794
|
+
# @param CustomerData: 渠道的业务信息,最大长度1000个字符。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
|
1795
|
+
# @type CustomerData: String
|
1796
|
+
# @param Unordered: 合同签署顺序类型(无序签,顺序签),默认为false,即有序签署
|
1797
|
+
# @type Unordered: Boolean
|
1798
|
+
# @param CustomShowMap: 合同显示的页卡模板,说明:只支持{合同名称}, {发起方企业}, {发起方姓名}, {签署方N企业}, {签署方N姓名},且N不能超过签署人的数量,N从1开始
|
1799
|
+
# @type CustomShowMap: String
|
1800
|
+
# @param NeedSignReview: 本企业(发起方企业)是否需要签署审批
|
1801
|
+
# @type NeedSignReview: Boolean
|
1802
|
+
|
1803
|
+
attr_accessor :FileIds, :FlowName, :FlowApprovers, :Deadline, :FlowDescription, :FlowType, :CallbackUrl, :CustomerData, :Unordered, :CustomShowMap, :NeedSignReview
|
1804
|
+
|
1805
|
+
def initialize(fileids=nil, flowname=nil, flowapprovers=nil, deadline=nil, flowdescription=nil, flowtype=nil, callbackurl=nil, customerdata=nil, unordered=nil, customshowmap=nil, needsignreview=nil)
|
1806
|
+
@FileIds = fileids
|
1807
|
+
@FlowName = flowname
|
1808
|
+
@FlowApprovers = flowapprovers
|
1809
|
+
@Deadline = deadline
|
1810
|
+
@FlowDescription = flowdescription
|
1811
|
+
@FlowType = flowtype
|
1812
|
+
@CallbackUrl = callbackurl
|
1813
|
+
@CustomerData = customerdata
|
1814
|
+
@Unordered = unordered
|
1815
|
+
@CustomShowMap = customshowmap
|
1816
|
+
@NeedSignReview = needsignreview
|
1817
|
+
end
|
1818
|
+
|
1819
|
+
def deserialize(params)
|
1820
|
+
@FileIds = params['FileIds']
|
1821
|
+
@FlowName = params['FlowName']
|
1822
|
+
unless params['FlowApprovers'].nil?
|
1823
|
+
@FlowApprovers = []
|
1824
|
+
params['FlowApprovers'].each do |i|
|
1825
|
+
flowapproverinfo_tmp = FlowApproverInfo.new
|
1826
|
+
flowapproverinfo_tmp.deserialize(i)
|
1827
|
+
@FlowApprovers << flowapproverinfo_tmp
|
1828
|
+
end
|
1829
|
+
end
|
1830
|
+
@Deadline = params['Deadline']
|
1831
|
+
@FlowDescription = params['FlowDescription']
|
1832
|
+
@FlowType = params['FlowType']
|
1833
|
+
@CallbackUrl = params['CallbackUrl']
|
1834
|
+
@CustomerData = params['CustomerData']
|
1835
|
+
@Unordered = params['Unordered']
|
1836
|
+
@CustomShowMap = params['CustomShowMap']
|
1837
|
+
@NeedSignReview = params['NeedSignReview']
|
1838
|
+
end
|
1839
|
+
end
|
1840
|
+
|
1642
1841
|
# 此结构体 (FlowInfo) 用于描述签署流程信息。
|
1643
1842
|
|
1644
1843
|
# 【动态表格传参说明】
|
@@ -2287,10 +2486,13 @@ module TencentCloud
|
|
2287
2486
|
# @param OpenId: 企业经办人 用户在渠道的编号
|
2288
2487
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2289
2488
|
# @type OpenId: String
|
2489
|
+
# @param FlowGroupId: 合同组签署链接对应的合同组id
|
2490
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2491
|
+
# @type FlowGroupId: String
|
2290
2492
|
|
2291
|
-
attr_accessor :SignUrl, :Deadline, :SignOrder, :SignId, :CustomUserId, :Name, :Mobile, :OrganizationName, :ApproverType, :IdCardNumber, :FlowId, :OpenId
|
2493
|
+
attr_accessor :SignUrl, :Deadline, :SignOrder, :SignId, :CustomUserId, :Name, :Mobile, :OrganizationName, :ApproverType, :IdCardNumber, :FlowId, :OpenId, :FlowGroupId
|
2292
2494
|
|
2293
|
-
def initialize(signurl=nil, deadline=nil, signorder=nil, signid=nil, customuserid=nil, name=nil, mobile=nil, organizationname=nil, approvertype=nil, idcardnumber=nil, flowid=nil, openid=nil)
|
2495
|
+
def initialize(signurl=nil, deadline=nil, signorder=nil, signid=nil, customuserid=nil, name=nil, mobile=nil, organizationname=nil, approvertype=nil, idcardnumber=nil, flowid=nil, openid=nil, flowgroupid=nil)
|
2294
2496
|
@SignUrl = signurl
|
2295
2497
|
@Deadline = deadline
|
2296
2498
|
@SignOrder = signorder
|
@@ -2303,6 +2505,7 @@ module TencentCloud
|
|
2303
2505
|
@IdCardNumber = idcardnumber
|
2304
2506
|
@FlowId = flowid
|
2305
2507
|
@OpenId = openid
|
2508
|
+
@FlowGroupId = flowgroupid
|
2306
2509
|
end
|
2307
2510
|
|
2308
2511
|
def deserialize(params)
|
@@ -2318,6 +2521,7 @@ module TencentCloud
|
|
2318
2521
|
@IdCardNumber = params['IdCardNumber']
|
2319
2522
|
@FlowId = params['FlowId']
|
2320
2523
|
@OpenId = params['OpenId']
|
2524
|
+
@FlowGroupId = params['FlowGroupId']
|
2321
2525
|
end
|
2322
2526
|
end
|
2323
2527
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-essbasic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.407
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|