tencentcloud-sdk-ess 3.0.614 → 3.0.616
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 +17 -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: d970c52b443085041837c7be9b8141ab07746583
|
4
|
+
data.tar.gz: b8ebd503a63efc1ae6a636289774163738e73f0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5d02368bfa37a8c7bbad94df8241115664d06378cbc5d9574d5a1254440daace5fde7743d34bf468024c573a60ce2c41f2d0ae7e79338d04c67dfc0ddcc2427
|
7
|
+
data.tar.gz: f4ef09963ae281db81756cc1d71f0aae7b16c3ef984c1044b176789cc6ed178c6ee6ea63971f5567c62faba3ba4d4d58eba26bb96c21f2e7d6830352ae83bd66
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.616
|
data/lib/v20201111/models.rb
CHANGED
@@ -116,10 +116,12 @@ module TencentCloud
|
|
116
116
|
# @param ApproverVerifyTypes: 签署人查看合同时认证方式,
|
117
117
|
# 1-实名查看 2-短信验证码查看(企业签署方不支持该方式)
|
118
118
|
# 如果不传默认为1
|
119
|
+
# 模板发起的时候,认证方式以模版配置为主
|
119
120
|
# @type ApproverVerifyTypes: Array
|
120
121
|
# @param ApproverSignTypes: 签署人签署合同时的认证方式
|
121
122
|
# 1-人脸认证 2-签署密码 3-运营商三要素(默认为1,2)
|
122
123
|
# 合同签署认证方式的优先级 verifyChannel>approverSignTypes
|
124
|
+
# 模板发起的时候,认证方式以模版配置为主
|
123
125
|
# @type ApproverSignTypes: Array
|
124
126
|
# @param ApproverNeedSignReview: 当前签署方进行签署操作是否需要企业内部审批,true 则为需要。为个人签署方时则由发起方企业审核。
|
125
127
|
# @type ApproverNeedSignReview: Boolean
|
@@ -1777,18 +1779,21 @@ module TencentCloud
|
|
1777
1779
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
1778
1780
|
# @param Organization: 机构信息,暂未开放
|
1779
1781
|
# @type Organization: :class:`Tencentcloud::Ess.v20201111.models.OrganizationInfo`
|
1782
|
+
# @param JumpUrl: 签署完之后的H5页面的跳转链接,此链接支持http://和https://,最大长度1000个字符。
|
1783
|
+
# @type JumpUrl: String
|
1780
1784
|
|
1781
|
-
attr_accessor :FlowId, :FlowApproverInfos, :Operator, :Agent, :Organization
|
1785
|
+
attr_accessor :FlowId, :FlowApproverInfos, :Operator, :Agent, :Organization, :JumpUrl
|
1782
1786
|
extend Gem::Deprecate
|
1783
1787
|
deprecate :Organization, :none, 2023, 7
|
1784
1788
|
deprecate :Organization=, :none, 2023, 7
|
1785
1789
|
|
1786
|
-
def initialize(flowid=nil, flowapproverinfos=nil, operator=nil, agent=nil, organization=nil)
|
1790
|
+
def initialize(flowid=nil, flowapproverinfos=nil, operator=nil, agent=nil, organization=nil, jumpurl=nil)
|
1787
1791
|
@FlowId = flowid
|
1788
1792
|
@FlowApproverInfos = flowapproverinfos
|
1789
1793
|
@Operator = operator
|
1790
1794
|
@Agent = agent
|
1791
1795
|
@Organization = organization
|
1796
|
+
@JumpUrl = jumpurl
|
1792
1797
|
end
|
1793
1798
|
|
1794
1799
|
def deserialize(params)
|
@@ -1813,6 +1818,7 @@ module TencentCloud
|
|
1813
1818
|
@Organization = OrganizationInfo.new
|
1814
1819
|
@Organization.deserialize(params['Organization'])
|
1815
1820
|
end
|
1821
|
+
@JumpUrl = params['JumpUrl']
|
1816
1822
|
end
|
1817
1823
|
end
|
1818
1824
|
|
@@ -2327,15 +2333,18 @@ module TencentCloud
|
|
2327
2333
|
# @type ReleasedApprovers: Array
|
2328
2334
|
# @param Deadline: 签署流程的签署截止时间。 值为unix时间戳,精确到秒,不传默认为当前时间七天后
|
2329
2335
|
# @type Deadline: Integer
|
2336
|
+
# @param Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
2337
|
+
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
2330
2338
|
|
2331
|
-
attr_accessor :Operator, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers, :Deadline
|
2339
|
+
attr_accessor :Operator, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers, :Deadline, :Agent
|
2332
2340
|
|
2333
|
-
def initialize(operator=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil, deadline=nil)
|
2341
|
+
def initialize(operator=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil, deadline=nil, agent=nil)
|
2334
2342
|
@Operator = operator
|
2335
2343
|
@NeedRelievedFlowId = needrelievedflowid
|
2336
2344
|
@ReliveInfo = reliveinfo
|
2337
2345
|
@ReleasedApprovers = releasedapprovers
|
2338
2346
|
@Deadline = deadline
|
2347
|
+
@Agent = agent
|
2339
2348
|
end
|
2340
2349
|
|
2341
2350
|
def deserialize(params)
|
@@ -2357,6 +2366,10 @@ module TencentCloud
|
|
2357
2366
|
end
|
2358
2367
|
end
|
2359
2368
|
@Deadline = params['Deadline']
|
2369
|
+
unless params['Agent'].nil?
|
2370
|
+
@Agent = Agent.new
|
2371
|
+
@Agent.deserialize(params['Agent'])
|
2372
|
+
end
|
2360
2373
|
end
|
2361
2374
|
end
|
2362
2375
|
|
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.616
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|