tencentcloud-sdk-essbasic 3.0.382 → 3.0.387
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/v20210526/client.rb +29 -2
- data/lib/v20210526/models.rb +113 -40
- 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: 8949d995abe0f55fff29a2e392ecc12b8dab9fe0
|
|
4
|
+
data.tar.gz: 7f3d5f870514f68c0df8b66cb80f738f7df45431
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6eaf323976c45a47519f1c03cbaeb1c6afc4095d67549543b149fa427e27eed1a75e4e225c74ec6beb93844d0af89115545a83b8a8472fd11a25c38d997cab9a
|
|
7
|
+
data.tar.gz: cd6380258ef401e8e47fcfda02043db422b6067714fb45261fa05f323b6787c99f7a24d569971f8bed3bb7bde7d010ed695f8964ca70f4985f7fefe7606d2c71
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.387
|
data/lib/v20210526/client.rb
CHANGED
|
@@ -53,8 +53,8 @@ module TencentCloud
|
|
|
53
53
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
54
54
|
end
|
|
55
55
|
|
|
56
|
-
#
|
|
57
|
-
#
|
|
56
|
+
# 指定需要批量撤销的签署流程Id,获取批量撤销链接
|
|
57
|
+
# 客户指定需要撤销的签署流程Id,最多100个,超过100不处理;接口调用成功返回批量撤销合同的链接,通过链接跳转到电子签小程序完成批量撤销
|
|
58
58
|
|
|
59
59
|
# @param request: Request instance for ChannelCreateBatchCancelFlowUrl.
|
|
60
60
|
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateBatchCancelFlowUrlRequest`
|
|
@@ -126,6 +126,33 @@ module TencentCloud
|
|
|
126
126
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
127
127
|
end
|
|
128
128
|
|
|
129
|
+
# 提交企业签署流程审批结果
|
|
130
|
+
|
|
131
|
+
# 在通过接口(CreateFlowsByTemplates 或者ChannelCreateFlowByFiles)创建签署流程时,若指定了参数 NeedSignReview 为true,则可以调用此接口提交企业内部签署审批结果。
|
|
132
|
+
# 若签署流程状态正常,且本企业存在签署方未签署,同一签署流程可以多次提交签署审批结果,签署时的最后一个“审批结果”有效。
|
|
133
|
+
|
|
134
|
+
# @param request: Request instance for ChannelCreateFlowSignReview.
|
|
135
|
+
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateFlowSignReviewRequest`
|
|
136
|
+
# @rtype: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateFlowSignReviewResponse`
|
|
137
|
+
def ChannelCreateFlowSignReview(request)
|
|
138
|
+
body = send_request('ChannelCreateFlowSignReview', request.serialize)
|
|
139
|
+
response = JSON.parse(body)
|
|
140
|
+
if response['Response'].key?('Error') == false
|
|
141
|
+
model = ChannelCreateFlowSignReviewResponse.new
|
|
142
|
+
model.deserialize(response['Response'])
|
|
143
|
+
model
|
|
144
|
+
else
|
|
145
|
+
code = response['Response']['Error']['Code']
|
|
146
|
+
message = response['Response']['Error']['Message']
|
|
147
|
+
reqid = response['Response']['RequestId']
|
|
148
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
149
|
+
end
|
|
150
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
151
|
+
raise e
|
|
152
|
+
rescue StandardError => e
|
|
153
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
154
|
+
end
|
|
155
|
+
|
|
129
156
|
# 此接口(ChannelCreateMultiFlowSignQRCode)用于创建一码多扫签署流程二维码。
|
|
130
157
|
# 适用的模版仅限于B2C(1、无序签署,2、顺序签署时B静默签署,3、顺序签署时B非首位签署)、单C的模版,且模版中发起方没有填写控件。
|
|
131
158
|
|
data/lib/v20210526/models.rb
CHANGED
|
@@ -194,11 +194,11 @@ module TencentCloud
|
|
|
194
194
|
|
|
195
195
|
# ChannelCreateBatchCancelFlowUrl返回参数结构体
|
|
196
196
|
class ChannelCreateBatchCancelFlowUrlResponse < TencentCloud::Common::AbstractModel
|
|
197
|
-
# @param BatchCancelFlowUrl:
|
|
197
|
+
# @param BatchCancelFlowUrl: 批量撤销url
|
|
198
198
|
# @type BatchCancelFlowUrl: String
|
|
199
|
-
# @param FailMessages:
|
|
199
|
+
# @param FailMessages: 签署流程批量撤销失败原因
|
|
200
200
|
# @type FailMessages: Array
|
|
201
|
-
# @param UrlExpireOn:
|
|
201
|
+
# @param UrlExpireOn: 签署撤销url过期时间-年月日-时分秒
|
|
202
202
|
# @type UrlExpireOn: String
|
|
203
203
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
204
204
|
# @type RequestId: String
|
|
@@ -222,28 +222,28 @@ module TencentCloud
|
|
|
222
222
|
|
|
223
223
|
# ChannelCreateConvertTaskApi请求参数结构体
|
|
224
224
|
class ChannelCreateConvertTaskApiRequest < TencentCloud::Common::AbstractModel
|
|
225
|
-
# @param Agent:
|
|
225
|
+
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
226
226
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
227
|
-
# @param ResourceId: 资源Id
|
|
228
|
-
# @type ResourceId: String
|
|
229
227
|
# @param ResourceType: 资源类型 取值范围doc,docx,html之一
|
|
230
228
|
# @type ResourceType: String
|
|
231
|
-
# @param ResourceName:
|
|
229
|
+
# @param ResourceName: 资源名称,长度限制为256字符
|
|
232
230
|
# @type ResourceName: String
|
|
233
|
-
# @param
|
|
234
|
-
# @type
|
|
235
|
-
# @param Operator:
|
|
231
|
+
# @param ResourceId: 资源Id,通过UploadFiles获取
|
|
232
|
+
# @type ResourceId: String
|
|
233
|
+
# @param Operator: 操作者信息
|
|
236
234
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
235
|
+
# @param Organization: 暂未开放
|
|
236
|
+
# @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
|
|
237
237
|
|
|
238
|
-
attr_accessor :Agent, :
|
|
238
|
+
attr_accessor :Agent, :ResourceType, :ResourceName, :ResourceId, :Operator, :Organization
|
|
239
239
|
|
|
240
|
-
def initialize(agent=nil,
|
|
240
|
+
def initialize(agent=nil, resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, organization=nil)
|
|
241
241
|
@Agent = agent
|
|
242
|
-
@ResourceId = resourceid
|
|
243
242
|
@ResourceType = resourcetype
|
|
244
243
|
@ResourceName = resourcename
|
|
245
|
-
@
|
|
244
|
+
@ResourceId = resourceid
|
|
246
245
|
@Operator = operator
|
|
246
|
+
@Organization = organization
|
|
247
247
|
end
|
|
248
248
|
|
|
249
249
|
def deserialize(params)
|
|
@@ -251,17 +251,17 @@ module TencentCloud
|
|
|
251
251
|
@Agent = Agent.new
|
|
252
252
|
@Agent.deserialize(params['Agent'])
|
|
253
253
|
end
|
|
254
|
-
@ResourceId = params['ResourceId']
|
|
255
254
|
@ResourceType = params['ResourceType']
|
|
256
255
|
@ResourceName = params['ResourceName']
|
|
257
|
-
|
|
258
|
-
@Organization = OrganizationInfo.new
|
|
259
|
-
@Organization.deserialize(params['Organization'])
|
|
260
|
-
end
|
|
256
|
+
@ResourceId = params['ResourceId']
|
|
261
257
|
unless params['Operator'].nil?
|
|
262
258
|
@Operator = UserInfo.new
|
|
263
259
|
@Operator.deserialize(params['Operator'])
|
|
264
260
|
end
|
|
261
|
+
unless params['Organization'].nil?
|
|
262
|
+
@Organization = OrganizationInfo.new
|
|
263
|
+
@Organization.deserialize(params['Organization'])
|
|
264
|
+
end
|
|
265
265
|
end
|
|
266
266
|
end
|
|
267
267
|
|
|
@@ -287,7 +287,7 @@ module TencentCloud
|
|
|
287
287
|
|
|
288
288
|
# ChannelCreateFlowByFiles请求参数结构体
|
|
289
289
|
class ChannelCreateFlowByFilesRequest < TencentCloud::Common::AbstractModel
|
|
290
|
-
# @param Agent:
|
|
290
|
+
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
291
291
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
292
292
|
# @param FlowName: 签署流程名称,长度不超过200个字符
|
|
293
293
|
# @type FlowName: String
|
|
@@ -311,12 +311,14 @@ module TencentCloud
|
|
|
311
311
|
# @type CustomShowMap: String
|
|
312
312
|
# @param CustomerData: 渠道的业务信息,最大长度1000个字符。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
|
|
313
313
|
# @type CustomerData: String
|
|
314
|
+
# @param NeedSignReview: 发起方企业的签署人进行签署操作是否需要企业内部审批。 若设置为true,审核结果需通过接口 ChannelCreateFlowSignReview 通知电子签,审核通过后,发起方企业签署人方可进行签署操作,否则会阻塞其签署操作。 注:企业可以通过此功能与企业内部的审批流程进行关联,支持手动、静默签署合同。
|
|
315
|
+
# @type NeedSignReview: Boolean
|
|
314
316
|
# @param Operator: 操作者的信息
|
|
315
317
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
316
318
|
|
|
317
|
-
attr_accessor :Agent, :FlowName, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :FlowDescription, :CustomShowMap, :CustomerData, :Operator
|
|
319
|
+
attr_accessor :Agent, :FlowName, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :FlowDescription, :CustomShowMap, :CustomerData, :NeedSignReview, :Operator
|
|
318
320
|
|
|
319
|
-
def initialize(agent=nil, flowname=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, flowdescription=nil, customshowmap=nil, customerdata=nil, operator=nil)
|
|
321
|
+
def initialize(agent=nil, flowname=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, flowdescription=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, operator=nil)
|
|
320
322
|
@Agent = agent
|
|
321
323
|
@FlowName = flowname
|
|
322
324
|
@FlowApprovers = flowapprovers
|
|
@@ -329,6 +331,7 @@ module TencentCloud
|
|
|
329
331
|
@FlowDescription = flowdescription
|
|
330
332
|
@CustomShowMap = customshowmap
|
|
331
333
|
@CustomerData = customerdata
|
|
334
|
+
@NeedSignReview = needsignreview
|
|
332
335
|
@Operator = operator
|
|
333
336
|
end
|
|
334
337
|
|
|
@@ -362,6 +365,7 @@ module TencentCloud
|
|
|
362
365
|
@FlowDescription = params['FlowDescription']
|
|
363
366
|
@CustomShowMap = params['CustomShowMap']
|
|
364
367
|
@CustomerData = params['CustomerData']
|
|
368
|
+
@NeedSignReview = params['NeedSignReview']
|
|
365
369
|
unless params['Operator'].nil?
|
|
366
370
|
@Operator = UserInfo.new
|
|
367
371
|
@Operator.deserialize(params['Operator'])
|
|
@@ -390,6 +394,56 @@ module TencentCloud
|
|
|
390
394
|
end
|
|
391
395
|
end
|
|
392
396
|
|
|
397
|
+
# ChannelCreateFlowSignReview请求参数结构体
|
|
398
|
+
class ChannelCreateFlowSignReviewRequest < TencentCloud::Common::AbstractModel
|
|
399
|
+
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
400
|
+
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
401
|
+
# @param FlowId: 签署流程编号
|
|
402
|
+
# @type FlowId: String
|
|
403
|
+
# @param ReviewType: 企业内部审核结果
|
|
404
|
+
# PASS: 通过
|
|
405
|
+
# REJECT: 拒绝
|
|
406
|
+
# @type ReviewType: String
|
|
407
|
+
# @param ReviewMessage: 审核原因
|
|
408
|
+
# 当ReviewType 是REJECT 时此字段必填,字符串长度不超过200
|
|
409
|
+
# @type ReviewMessage: String
|
|
410
|
+
|
|
411
|
+
attr_accessor :Agent, :FlowId, :ReviewType, :ReviewMessage
|
|
412
|
+
|
|
413
|
+
def initialize(agent=nil, flowid=nil, reviewtype=nil, reviewmessage=nil)
|
|
414
|
+
@Agent = agent
|
|
415
|
+
@FlowId = flowid
|
|
416
|
+
@ReviewType = reviewtype
|
|
417
|
+
@ReviewMessage = reviewmessage
|
|
418
|
+
end
|
|
419
|
+
|
|
420
|
+
def deserialize(params)
|
|
421
|
+
unless params['Agent'].nil?
|
|
422
|
+
@Agent = Agent.new
|
|
423
|
+
@Agent.deserialize(params['Agent'])
|
|
424
|
+
end
|
|
425
|
+
@FlowId = params['FlowId']
|
|
426
|
+
@ReviewType = params['ReviewType']
|
|
427
|
+
@ReviewMessage = params['ReviewMessage']
|
|
428
|
+
end
|
|
429
|
+
end
|
|
430
|
+
|
|
431
|
+
# ChannelCreateFlowSignReview返回参数结构体
|
|
432
|
+
class ChannelCreateFlowSignReviewResponse < TencentCloud::Common::AbstractModel
|
|
433
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
434
|
+
# @type RequestId: String
|
|
435
|
+
|
|
436
|
+
attr_accessor :RequestId
|
|
437
|
+
|
|
438
|
+
def initialize(requestid=nil)
|
|
439
|
+
@RequestId = requestid
|
|
440
|
+
end
|
|
441
|
+
|
|
442
|
+
def deserialize(params)
|
|
443
|
+
@RequestId = params['RequestId']
|
|
444
|
+
end
|
|
445
|
+
end
|
|
446
|
+
|
|
393
447
|
# ChannelCreateMultiFlowSignQRCode请求参数结构体
|
|
394
448
|
class ChannelCreateMultiFlowSignQRCodeRequest < TencentCloud::Common::AbstractModel
|
|
395
449
|
# @param Agent: 渠道应用相关信息。
|
|
@@ -482,22 +536,22 @@ module TencentCloud
|
|
|
482
536
|
|
|
483
537
|
# ChannelGetTaskResultApi请求参数结构体
|
|
484
538
|
class ChannelGetTaskResultApiRequest < TencentCloud::Common::AbstractModel
|
|
485
|
-
# @param Agent:
|
|
539
|
+
# @param Agent: 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 均必填。
|
|
486
540
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
487
|
-
# @param TaskId: 任务Id
|
|
541
|
+
# @param TaskId: 任务Id,通过ChannelCreateConvertTaskApi接口获得
|
|
488
542
|
# @type TaskId: String
|
|
489
|
-
# @param
|
|
490
|
-
# @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
|
|
491
|
-
# @param Operator: 操作人信息
|
|
543
|
+
# @param Operator: 操作者的信息
|
|
492
544
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
|
545
|
+
# @param Organization: 暂未开放
|
|
546
|
+
# @type Organization: :class:`Tencentcloud::Essbasic.v20210526.models.OrganizationInfo`
|
|
493
547
|
|
|
494
|
-
attr_accessor :Agent, :TaskId, :
|
|
548
|
+
attr_accessor :Agent, :TaskId, :Operator, :Organization
|
|
495
549
|
|
|
496
|
-
def initialize(agent=nil, taskid=nil,
|
|
550
|
+
def initialize(agent=nil, taskid=nil, operator=nil, organization=nil)
|
|
497
551
|
@Agent = agent
|
|
498
552
|
@TaskId = taskid
|
|
499
|
-
@Organization = organization
|
|
500
553
|
@Operator = operator
|
|
554
|
+
@Organization = organization
|
|
501
555
|
end
|
|
502
556
|
|
|
503
557
|
def deserialize(params)
|
|
@@ -506,14 +560,14 @@ module TencentCloud
|
|
|
506
560
|
@Agent.deserialize(params['Agent'])
|
|
507
561
|
end
|
|
508
562
|
@TaskId = params['TaskId']
|
|
509
|
-
unless params['Organization'].nil?
|
|
510
|
-
@Organization = OrganizationInfo.new
|
|
511
|
-
@Organization.deserialize(params['Organization'])
|
|
512
|
-
end
|
|
513
563
|
unless params['Operator'].nil?
|
|
514
564
|
@Operator = UserInfo.new
|
|
515
565
|
@Operator.deserialize(params['Operator'])
|
|
516
566
|
end
|
|
567
|
+
unless params['Organization'].nil?
|
|
568
|
+
@Organization = OrganizationInfo.new
|
|
569
|
+
@Organization.deserialize(params['Organization'])
|
|
570
|
+
end
|
|
517
571
|
end
|
|
518
572
|
end
|
|
519
573
|
|
|
@@ -521,11 +575,23 @@ module TencentCloud
|
|
|
521
575
|
class ChannelGetTaskResultApiResponse < TencentCloud::Common::AbstractModel
|
|
522
576
|
# @param TaskId: 任务Id
|
|
523
577
|
# @type TaskId: String
|
|
524
|
-
# @param TaskStatus:
|
|
578
|
+
# @param TaskStatus: 任务状态,需要关注的状态
|
|
579
|
+
# 0 :NeedTranform - 任务已提交
|
|
580
|
+
# 4 :Processing - 文档转换中
|
|
581
|
+
# 8 :TaskEnd - 任务处理完成
|
|
582
|
+
# -2 :DownloadFailed - 下载失败
|
|
583
|
+
# -6 :ProcessFailed - 转换失败
|
|
584
|
+
# -13:ProcessTimeout - 转换文件超时
|
|
525
585
|
# @type TaskStatus: Integer
|
|
526
|
-
# @param TaskMessage:
|
|
586
|
+
# @param TaskMessage: 状态描述,需要关注的状态
|
|
587
|
+
# NeedTranform - 任务已提交
|
|
588
|
+
# Processing - 文档转换中
|
|
589
|
+
# TaskEnd - 任务处理完成
|
|
590
|
+
# DownloadFailed - 下载失败
|
|
591
|
+
# ProcessFailed - 转换失败
|
|
592
|
+
# ProcessTimeout - 转换文件超时
|
|
527
593
|
# @type TaskMessage: String
|
|
528
|
-
# @param ResourceId: 资源Id
|
|
594
|
+
# @param ResourceId: 资源Id,也是FileId,用于文件发起使用
|
|
529
595
|
# @type ResourceId: String
|
|
530
596
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
531
597
|
# @type RequestId: String
|
|
@@ -1582,10 +1648,15 @@ module TencentCloud
|
|
|
1582
1648
|
# @type CustomShowMap: String
|
|
1583
1649
|
# @param CcInfos: 被抄送人的信息列表,抄送功能暂不开放
|
|
1584
1650
|
# @type CcInfos: Array
|
|
1651
|
+
# @param NeedSignReview: 发起方企业的签署人进行签署操作是否需要企业内部审批。
|
|
1652
|
+
# 若设置为true,审核结果需通过接口 ChannelCreateFlowSignReview 通知电子签,审核通过后,发起方企业签署人方可进行签署操作,否则会阻塞其签署操作。
|
|
1653
|
+
|
|
1654
|
+
# 注:企业可以通过此功能与企业内部的审批流程进行关联,支持手动、静默签署合同。
|
|
1655
|
+
# @type NeedSignReview: Boolean
|
|
1585
1656
|
|
|
1586
|
-
attr_accessor :FlowName, :Deadline, :TemplateId, :FlowApprovers, :FormFields, :CallbackUrl, :FlowType, :FlowDescription, :CustomerData, :CustomShowMap, :CcInfos
|
|
1657
|
+
attr_accessor :FlowName, :Deadline, :TemplateId, :FlowApprovers, :FormFields, :CallbackUrl, :FlowType, :FlowDescription, :CustomerData, :CustomShowMap, :CcInfos, :NeedSignReview
|
|
1587
1658
|
|
|
1588
|
-
def initialize(flowname=nil, deadline=nil, templateid=nil, flowapprovers=nil, formfields=nil, callbackurl=nil, flowtype=nil, flowdescription=nil, customerdata=nil, customshowmap=nil, ccinfos=nil)
|
|
1659
|
+
def initialize(flowname=nil, deadline=nil, templateid=nil, flowapprovers=nil, formfields=nil, callbackurl=nil, flowtype=nil, flowdescription=nil, customerdata=nil, customshowmap=nil, ccinfos=nil, needsignreview=nil)
|
|
1589
1660
|
@FlowName = flowname
|
|
1590
1661
|
@Deadline = deadline
|
|
1591
1662
|
@TemplateId = templateid
|
|
@@ -1597,6 +1668,7 @@ module TencentCloud
|
|
|
1597
1668
|
@CustomerData = customerdata
|
|
1598
1669
|
@CustomShowMap = customshowmap
|
|
1599
1670
|
@CcInfos = ccinfos
|
|
1671
|
+
@NeedSignReview = needsignreview
|
|
1600
1672
|
end
|
|
1601
1673
|
|
|
1602
1674
|
def deserialize(params)
|
|
@@ -1632,6 +1704,7 @@ module TencentCloud
|
|
|
1632
1704
|
@CcInfos << ccinfo_tmp
|
|
1633
1705
|
end
|
|
1634
1706
|
end
|
|
1707
|
+
@NeedSignReview = params['NeedSignReview']
|
|
1635
1708
|
end
|
|
1636
1709
|
end
|
|
1637
1710
|
|
|
@@ -2424,7 +2497,7 @@ module TencentCloud
|
|
|
2424
2497
|
# @param Agent: 应用相关信息,若是渠道版调用 appid 和proxyappid 必填
|
|
2425
2498
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
2426
2499
|
# @param BusinessType: 文件对应业务类型,用于区分文件存储路径:
|
|
2427
|
-
# 1. TEMPLATE - 模板; 文件类型:.pdf
|
|
2500
|
+
# 1. TEMPLATE - 模板; 文件类型:.pdf .doc .docx .html
|
|
2428
2501
|
# 2. DOCUMENT - 签署过程及签署后的合同文档/图片控件 文件类型:.pdf/.jpg/.png
|
|
2429
2502
|
# @type BusinessType: String
|
|
2430
2503
|
# @param FileInfos: 上传文件内容数组,最多支持20个文件
|
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.387
|
|
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-08-
|
|
11
|
+
date: 2022-08-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|