tencentcloud-sdk-essbasic 3.0.958 → 3.0.960
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 +13 -2
- 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: 071661d21302657ffc4afb2c9037f08900e71fe5
|
4
|
+
data.tar.gz: 12ce7a2dd381b8f0dec85f5358afece9404c0dab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f3a8cfa0089443bf26ae12e1744629134c51b80cd89fc054d2e9776fcf5ff74bb745a6489be466446d629e05a9d34b0c4c050a9526c6215ac882027d9f9e5f5
|
7
|
+
data.tar.gz: a5b5de21829a54fda0606bf9ff98499f16cbe4c5a35e010a0201cda07872be7932f6f1fcb1bda97daa88eb0629d32418a4992afbe716c78534376297a44a119c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.960
|
data/lib/v20210526/models.rb
CHANGED
@@ -1700,15 +1700,22 @@ module TencentCloud
|
|
1700
1700
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
1701
1701
|
# @param FlowDisplayType: 在短信通知、填写、签署流程中,若标题、按钮、合同详情等地方存在“合同”字样时,可根据此配置指定文案,可选文案如下: <ul><li> <b>0</b> :合同(默认值)</li> <li> <b>1</b> :文件</li> <li> <b>2</b> :协议</li></ul>效果如下:
|
1702
1702
|
# @type FlowDisplayType: Integer
|
1703
|
+
# @param NeedPreview: 是否为预览模式,取值如下: <ul><li> **false**:非预览模式(默认),会产生合同流程并返回合同流程编号FlowId。</li> <li> **true**:预览模式,不产生合同流程,不返回合同流程编号FlowId,而是返回预览链接PreviewUrl,有效期为300秒,用于查看真实发起后合同的样子。</li></ul>
|
1704
|
+
# @type NeedPreview: Boolean
|
1705
|
+
# @param PreviewType: 预览模式下产生的预览链接类型
|
1706
|
+
# <ul><li> **0** :(默认) 文件流 ,点开后下载预览的合同PDF文件 </li>
|
1707
|
+
# <li> **1** :H5链接 ,点开后在浏览器中展示合同的样子</li></ul>
|
1708
|
+
# 注: `此参数在NeedPreview 为true时有效`
|
1709
|
+
# @type PreviewType: Integer
|
1703
1710
|
|
1704
|
-
attr_accessor :Agent, :FlowName, :FlowDescription, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :CustomShowMap, :CustomerData, :NeedSignReview, :ApproverVerifyType, :SignBeanTag, :CcInfos, :CcNotifyType, :AutoSignScene, :Operator, :FlowDisplayType
|
1711
|
+
attr_accessor :Agent, :FlowName, :FlowDescription, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :CustomShowMap, :CustomerData, :NeedSignReview, :ApproverVerifyType, :SignBeanTag, :CcInfos, :CcNotifyType, :AutoSignScene, :Operator, :FlowDisplayType, :NeedPreview, :PreviewType
|
1705
1712
|
extend Gem::Deprecate
|
1706
1713
|
deprecate :CallbackUrl, :none, 2024, 12
|
1707
1714
|
deprecate :CallbackUrl=, :none, 2024, 12
|
1708
1715
|
deprecate :Operator, :none, 2024, 12
|
1709
1716
|
deprecate :Operator=, :none, 2024, 12
|
1710
1717
|
|
1711
|
-
def initialize(agent=nil, flowname=nil, flowdescription=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, approververifytype=nil, signbeantag=nil, ccinfos=nil, ccnotifytype=nil, autosignscene=nil, operator=nil, flowdisplaytype=nil)
|
1718
|
+
def initialize(agent=nil, flowname=nil, flowdescription=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, approververifytype=nil, signbeantag=nil, ccinfos=nil, ccnotifytype=nil, autosignscene=nil, operator=nil, flowdisplaytype=nil, needpreview=nil, previewtype=nil)
|
1712
1719
|
@Agent = agent
|
1713
1720
|
@FlowName = flowname
|
1714
1721
|
@FlowDescription = flowdescription
|
@@ -1729,6 +1736,8 @@ module TencentCloud
|
|
1729
1736
|
@AutoSignScene = autosignscene
|
1730
1737
|
@Operator = operator
|
1731
1738
|
@FlowDisplayType = flowdisplaytype
|
1739
|
+
@NeedPreview = needpreview
|
1740
|
+
@PreviewType = previewtype
|
1732
1741
|
end
|
1733
1742
|
|
1734
1743
|
def deserialize(params)
|
@@ -1779,6 +1788,8 @@ module TencentCloud
|
|
1779
1788
|
@Operator.deserialize(params['Operator'])
|
1780
1789
|
end
|
1781
1790
|
@FlowDisplayType = params['FlowDisplayType']
|
1791
|
+
@NeedPreview = params['NeedPreview']
|
1792
|
+
@PreviewType = params['PreviewType']
|
1782
1793
|
end
|
1783
1794
|
end
|
1784
1795
|
|
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.960
|
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-12-
|
11
|
+
date: 2024-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|