tencentcloud-sdk-essbasic 3.0.910 → 3.0.912
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/models.rb +15 -4
- 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: 90654502d355e0ab1c69aadbe2b6678db3d29700
|
4
|
+
data.tar.gz: 76cb7b76c1ff2a3cb294d4d124c0ba0c72abbef6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9324a32cc64ae682e99d854fa3825039ee36a4ee318848ee19758780f5d6e8cd5d5b93102de993129296808f0d1ce0ee2b80f1edb2b6768fe8d7789a6ad7e98b
|
7
|
+
data.tar.gz: 55d8f0e1e34a18a96ee27fe5b3360b46e729c751594ceebd80825e185015e23d9ceab3907086a65b419689cf8f8b75febe6988476749af3fc065a2d174122640
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.912
|
data/lib/v20210526/models.rb
CHANGED
@@ -398,10 +398,12 @@ module TencentCloud
|
|
398
398
|
# @type NeedCreateReview: Boolean
|
399
399
|
# @param Components: 填写控件:文件发起使用
|
400
400
|
# @type Components: Array
|
401
|
+
# @param FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
402
|
+
# @type FlowDisplayType: Integer
|
401
403
|
|
402
|
-
attr_accessor :FlowName, :Deadline, :FlowType, :FlowDescription, :Unordered, :IntelligentStatus, :FormFields, :NeedSignReview, :UserData, :CcInfos, :NeedCreateReview, :Components
|
404
|
+
attr_accessor :FlowName, :Deadline, :FlowType, :FlowDescription, :Unordered, :IntelligentStatus, :FormFields, :NeedSignReview, :UserData, :CcInfos, :NeedCreateReview, :Components, :FlowDisplayType
|
403
405
|
|
404
|
-
def initialize(flowname=nil, deadline=nil, flowtype=nil, flowdescription=nil, unordered=nil, intelligentstatus=nil, formfields=nil, needsignreview=nil, userdata=nil, ccinfos=nil, needcreatereview=nil, components=nil)
|
406
|
+
def initialize(flowname=nil, deadline=nil, flowtype=nil, flowdescription=nil, unordered=nil, intelligentstatus=nil, formfields=nil, needsignreview=nil, userdata=nil, ccinfos=nil, needcreatereview=nil, components=nil, flowdisplaytype=nil)
|
405
407
|
@FlowName = flowname
|
406
408
|
@Deadline = deadline
|
407
409
|
@FlowType = flowtype
|
@@ -414,6 +416,7 @@ module TencentCloud
|
|
414
416
|
@CcInfos = ccinfos
|
415
417
|
@NeedCreateReview = needcreatereview
|
416
418
|
@Components = components
|
419
|
+
@FlowDisplayType = flowdisplaytype
|
417
420
|
end
|
418
421
|
|
419
422
|
def deserialize(params)
|
@@ -450,6 +453,7 @@ module TencentCloud
|
|
450
453
|
@Components << component_tmp
|
451
454
|
end
|
452
455
|
end
|
456
|
+
@FlowDisplayType = params['FlowDisplayType']
|
453
457
|
end
|
454
458
|
end
|
455
459
|
|
@@ -983,10 +987,12 @@ module TencentCloud
|
|
983
987
|
# 注:
|
984
988
|
# `不指定该值时,默认为签署方自行选择。`
|
985
989
|
# @type SignTypeSelector: Integer
|
990
|
+
# @param FlowBatchUrlInfo: 批量签署合同相关信息,指定合同和签署方的信息,用于补充动态签署人。
|
991
|
+
# @type FlowBatchUrlInfo: :class:`Tencentcloud::Essbasic.v20210526.models.FlowBatchUrlInfo`
|
986
992
|
|
987
|
-
attr_accessor :FlowApproverInfo, :Agent, :FlowIds, :FlowGroupId, :JumpUrl, :SignatureTypes, :ApproverSignTypes, :SignTypeSelector
|
993
|
+
attr_accessor :FlowApproverInfo, :Agent, :FlowIds, :FlowGroupId, :JumpUrl, :SignatureTypes, :ApproverSignTypes, :SignTypeSelector, :FlowBatchUrlInfo
|
988
994
|
|
989
|
-
def initialize(flowapproverinfo=nil, agent=nil, flowids=nil, flowgroupid=nil, jumpurl=nil, signaturetypes=nil, approversigntypes=nil, signtypeselector=nil)
|
995
|
+
def initialize(flowapproverinfo=nil, agent=nil, flowids=nil, flowgroupid=nil, jumpurl=nil, signaturetypes=nil, approversigntypes=nil, signtypeselector=nil, flowbatchurlinfo=nil)
|
990
996
|
@FlowApproverInfo = flowapproverinfo
|
991
997
|
@Agent = agent
|
992
998
|
@FlowIds = flowids
|
@@ -995,6 +1001,7 @@ module TencentCloud
|
|
995
1001
|
@SignatureTypes = signaturetypes
|
996
1002
|
@ApproverSignTypes = approversigntypes
|
997
1003
|
@SignTypeSelector = signtypeselector
|
1004
|
+
@FlowBatchUrlInfo = flowbatchurlinfo
|
998
1005
|
end
|
999
1006
|
|
1000
1007
|
def deserialize(params)
|
@@ -1012,6 +1019,10 @@ module TencentCloud
|
|
1012
1019
|
@SignatureTypes = params['SignatureTypes']
|
1013
1020
|
@ApproverSignTypes = params['ApproverSignTypes']
|
1014
1021
|
@SignTypeSelector = params['SignTypeSelector']
|
1022
|
+
unless params['FlowBatchUrlInfo'].nil?
|
1023
|
+
@FlowBatchUrlInfo = FlowBatchUrlInfo.new
|
1024
|
+
@FlowBatchUrlInfo.deserialize(params['FlowBatchUrlInfo'])
|
1025
|
+
end
|
1015
1026
|
end
|
1016
1027
|
end
|
1017
1028
|
|
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.912
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|