tencentcloud-sdk-ess 3.0.1021 → 3.0.1023
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 +33 -8
- 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: 6da9d0aeace7570651064154d7f75e8f264da0a3
|
4
|
+
data.tar.gz: 828a0bebde7817eac57e49d7dfc07b2c6ebb1795
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 694a06e17ffb499ca7bf14789a89f2f6ff713e847d31149f6868ce13b383e40fb25e105c6bf6f358d3900205c516a6b331ee4e920838b2b04b149d0074c81d14
|
7
|
+
data.tar.gz: cd0b84e5ffe5a7ee6c1be7a2d95d409cc527f01041ca815273eeffd885cc99dbe053824fef2a361ffbf0617a99805af52d470c87f70fa9cec18615d5d22958d5
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1023
|
data/lib/v20201111/models.rb
CHANGED
@@ -1919,10 +1919,15 @@ module TencentCloud
|
|
1919
1919
|
|
1920
1920
|
# 注: `若参与方为企业员工时,暂不支持对参与方信息进行缓存`
|
1921
1921
|
# @type CacheApproverInfo: Boolean
|
1922
|
+
# @param CanBatchReject: 是否允许此链接中签署方批量拒签。
|
1923
|
+
# <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>
|
1922
1924
|
|
1923
|
-
|
1925
|
+
# 注:`合同组暂不支持批量拒签功能。`
|
1926
|
+
# @type CanBatchReject: Boolean
|
1924
1927
|
|
1925
|
-
|
1928
|
+
attr_accessor :FlowApproverInfo, :Agent, :Operator, :FlowIds, :FlowGroupId, :JumpUrl, :SignatureTypes, :ApproverSignTypes, :SignTypeSelector, :FlowBatchUrlInfo, :Intention, :CacheApproverInfo, :CanBatchReject
|
1929
|
+
|
1930
|
+
def initialize(flowapproverinfo=nil, agent=nil, operator=nil, flowids=nil, flowgroupid=nil, jumpurl=nil, signaturetypes=nil, approversigntypes=nil, signtypeselector=nil, flowbatchurlinfo=nil, intention=nil, cacheapproverinfo=nil, canbatchreject=nil)
|
1926
1931
|
@FlowApproverInfo = flowapproverinfo
|
1927
1932
|
@Agent = agent
|
1928
1933
|
@Operator = operator
|
@@ -1935,6 +1940,7 @@ module TencentCloud
|
|
1935
1940
|
@FlowBatchUrlInfo = flowbatchurlinfo
|
1936
1941
|
@Intention = intention
|
1937
1942
|
@CacheApproverInfo = cacheapproverinfo
|
1943
|
+
@CanBatchReject = canbatchreject
|
1938
1944
|
end
|
1939
1945
|
|
1940
1946
|
def deserialize(params)
|
@@ -1965,6 +1971,7 @@ module TencentCloud
|
|
1965
1971
|
@Intention.deserialize(params['Intention'])
|
1966
1972
|
end
|
1967
1973
|
@CacheApproverInfo = params['CacheApproverInfo']
|
1974
|
+
@CanBatchReject = params['CanBatchReject']
|
1968
1975
|
end
|
1969
1976
|
end
|
1970
1977
|
|
@@ -2061,10 +2068,13 @@ module TencentCloud
|
|
2061
2068
|
|
2062
2069
|
# 参考 [公众号 H5 跳转电子签小程序](https://qian.tencent.com/developers/company/openwxminiprogram/#23-%E5%85%AC%E4%BC%97%E5%8F%B7-h5-%E4%B8%AD%E8%B7%B3%E8%BD%AC)。
|
2063
2070
|
# @type UrlUseEnv: String
|
2071
|
+
# @param CanBatchReject: 是否允许此链接中签署方批量拒签。 <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>
|
2072
|
+
# 注:`1. 合同组暂不支持批量拒签功能。2. 如果是链接直接跳转至详情页(JumpToDetail参数为true),也不支持批量拒签功能`
|
2073
|
+
# @type CanBatchReject: Boolean
|
2064
2074
|
|
2065
|
-
attr_accessor :Operator, :Name, :Mobile, :Agent, :IdCardType, :IdCardNumber, :NotifyType, :FlowIds, :OrganizationName, :JumpToDetail, :FlowBatchUrlInfo, :AutoJumpBack, :UrlUseEnv
|
2075
|
+
attr_accessor :Operator, :Name, :Mobile, :Agent, :IdCardType, :IdCardNumber, :NotifyType, :FlowIds, :OrganizationName, :JumpToDetail, :FlowBatchUrlInfo, :AutoJumpBack, :UrlUseEnv, :CanBatchReject
|
2066
2076
|
|
2067
|
-
def initialize(operator=nil, name=nil, mobile=nil, agent=nil, idcardtype=nil, idcardnumber=nil, notifytype=nil, flowids=nil, organizationname=nil, jumptodetail=nil, flowbatchurlinfo=nil, autojumpback=nil, urluseenv=nil)
|
2077
|
+
def initialize(operator=nil, name=nil, mobile=nil, agent=nil, idcardtype=nil, idcardnumber=nil, notifytype=nil, flowids=nil, organizationname=nil, jumptodetail=nil, flowbatchurlinfo=nil, autojumpback=nil, urluseenv=nil, canbatchreject=nil)
|
2068
2078
|
@Operator = operator
|
2069
2079
|
@Name = name
|
2070
2080
|
@Mobile = mobile
|
@@ -2078,6 +2088,7 @@ module TencentCloud
|
|
2078
2088
|
@FlowBatchUrlInfo = flowbatchurlinfo
|
2079
2089
|
@AutoJumpBack = autojumpback
|
2080
2090
|
@UrlUseEnv = urluseenv
|
2091
|
+
@CanBatchReject = canbatchreject
|
2081
2092
|
end
|
2082
2093
|
|
2083
2094
|
def deserialize(params)
|
@@ -2103,6 +2114,7 @@ module TencentCloud
|
|
2103
2114
|
end
|
2104
2115
|
@AutoJumpBack = params['AutoJumpBack']
|
2105
2116
|
@UrlUseEnv = params['UrlUseEnv']
|
2117
|
+
@CanBatchReject = params['CanBatchReject']
|
2106
2118
|
end
|
2107
2119
|
end
|
2108
2120
|
|
@@ -3668,10 +3680,13 @@ module TencentCloud
|
|
3668
3680
|
# @type ShowComponentTypes: Array
|
3669
3681
|
# @param ResultPageConfig: 发起流程的可嵌入页面结果页配置
|
3670
3682
|
# @type ResultPageConfig: Array
|
3683
|
+
# @param SignComponentConfig: 签署控件的配置信息,用在嵌入式发起的页面配置,包括
|
3684
|
+
# - 签署控件 是否默认展示日期.
|
3685
|
+
# @type SignComponentConfig: :class:`Tencentcloud::Ess.v20201111.models.SignComponentConfig`
|
3671
3686
|
|
3672
|
-
attr_accessor :CanEditFlow, :CanEditFormField, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :SkipUploadFile, :ForbidEditFillComponent, :CustomCreateFlowDescription, :ForbidAddApprover, :ForbidEditFlowProperties, :HideComponentTypes, :ShowComponentTypes, :ResultPageConfig
|
3687
|
+
attr_accessor :CanEditFlow, :CanEditFormField, :HideShowFlowName, :HideShowFlowType, :HideShowDeadline, :CanSkipAddApprover, :SkipUploadFile, :ForbidEditFillComponent, :CustomCreateFlowDescription, :ForbidAddApprover, :ForbidEditFlowProperties, :HideComponentTypes, :ShowComponentTypes, :ResultPageConfig, :SignComponentConfig
|
3673
3688
|
|
3674
|
-
def initialize(caneditflow=nil, caneditformfield=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, skipuploadfile=nil, forbideditfillcomponent=nil, customcreateflowdescription=nil, forbidaddapprover=nil, forbideditflowproperties=nil, hidecomponenttypes=nil, showcomponenttypes=nil, resultpageconfig=nil)
|
3689
|
+
def initialize(caneditflow=nil, caneditformfield=nil, hideshowflowname=nil, hideshowflowtype=nil, hideshowdeadline=nil, canskipaddapprover=nil, skipuploadfile=nil, forbideditfillcomponent=nil, customcreateflowdescription=nil, forbidaddapprover=nil, forbideditflowproperties=nil, hidecomponenttypes=nil, showcomponenttypes=nil, resultpageconfig=nil, signcomponentconfig=nil)
|
3675
3690
|
@CanEditFlow = caneditflow
|
3676
3691
|
@CanEditFormField = caneditformfield
|
3677
3692
|
@HideShowFlowName = hideshowflowname
|
@@ -3686,6 +3701,7 @@ module TencentCloud
|
|
3686
3701
|
@HideComponentTypes = hidecomponenttypes
|
3687
3702
|
@ShowComponentTypes = showcomponenttypes
|
3688
3703
|
@ResultPageConfig = resultpageconfig
|
3704
|
+
@SignComponentConfig = signcomponentconfig
|
3689
3705
|
end
|
3690
3706
|
|
3691
3707
|
def deserialize(params)
|
@@ -3710,6 +3726,10 @@ module TencentCloud
|
|
3710
3726
|
@ResultPageConfig << createresultpageconfig_tmp
|
3711
3727
|
end
|
3712
3728
|
end
|
3729
|
+
unless params['SignComponentConfig'].nil?
|
3730
|
+
@SignComponentConfig = SignComponentConfig.new
|
3731
|
+
@SignComponentConfig.deserialize(params['SignComponentConfig'])
|
3732
|
+
end
|
3713
3733
|
end
|
3714
3734
|
end
|
3715
3735
|
|
@@ -5373,14 +5393,19 @@ module TencentCloud
|
|
5373
5393
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
5374
5394
|
# @param InitiatorComponents: 模板或者合同中的填写控件列表,列表中可支持下列多种填写控件,控件的详细定义参考开发者中心的Component结构体
|
5375
5395
|
# @type InitiatorComponents: Array
|
5376
|
-
# @param FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
5396
|
+
# @param FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li><li> <b>3</b> :文书</li></ul>效果如下:
|
5377
5397
|
# @type FlowDisplayType: Integer
|
5378
|
-
# @param SignComponentConfig:
|
5398
|
+
# @param SignComponentConfig: <font color="red">此参数已经废弃,请使用 CreateFlowOption 里面的 SignComponentConfig</font>
|
5399
|
+
# 签署控件的配置信息,用在嵌入式发起的页面配置,
|
5400
|
+
# 包括
|
5379
5401
|
|
5380
5402
|
# - 签署控件 是否默认展示日期.
|
5381
5403
|
# @type SignComponentConfig: :class:`Tencentcloud::Ess.v20201111.models.SignComponentConfig`
|
5382
5404
|
|
5383
5405
|
attr_accessor :Operator, :ResourceId, :FlowName, :ResourceType, :Unordered, :Deadline, :UserFlowTypeId, :FlowType, :Approvers, :IntelligentStatus, :Components, :FlowOption, :NeedSignReview, :NeedCreateReview, :UserData, :CcInfos, :FlowId, :Agent, :InitiatorComponents, :FlowDisplayType, :SignComponentConfig
|
5406
|
+
extend Gem::Deprecate
|
5407
|
+
deprecate :SignComponentConfig, :none, 2025, 3
|
5408
|
+
deprecate :SignComponentConfig=, :none, 2025, 3
|
5384
5409
|
|
5385
5410
|
def initialize(operator=nil, resourceid=nil, flowname=nil, resourcetype=nil, unordered=nil, deadline=nil, userflowtypeid=nil, flowtype=nil, approvers=nil, intelligentstatus=nil, components=nil, flowoption=nil, needsignreview=nil, needcreatereview=nil, userdata=nil, ccinfos=nil, flowid=nil, agent=nil, initiatorcomponents=nil, flowdisplaytype=nil, signcomponentconfig=nil)
|
5386
5411
|
@Operator = operator
|
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.1023
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|