tencentcloud-sdk-ess 3.0.760 → 3.0.762
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/client.rb +32 -1
- data/lib/v20201111/models.rb +16 -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: 14fc8cdea27f4d13487f6851ddc8b051194be715
|
|
4
|
+
data.tar.gz: fd035585a10d797aa30457e654675f4993651bcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc4cb89d1193d3dd09b6af114cd302c274404a9bb4977cc38cefe1a0d5af889918e6505eb89d9d67ba0e232c87ca3d16c902658b2373283ac2061a9874405e99
|
|
7
|
+
data.tar.gz: e7b2bacb5cc7a1c52484e417e5c80681e6505b7526896226aea10c0d64d5af4cd2f64e5d31923b986bd5c7d9a452b49de99ede00c50b90a6ae56868d11d8b6cf
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.762
|
data/lib/v20201111/client.rb
CHANGED
|
@@ -275,10 +275,41 @@ module TencentCloud
|
|
|
275
275
|
|
|
276
276
|
# 创建签署流程电子文档<br />
|
|
277
277
|
|
|
278
|
-
#
|
|
278
|
+
# ### 调用流程
|
|
279
|
+
# 该接口需要给对应的流程指定一个模板id,并且填充该模板中需要补充的信息。需要配置<a href="https://qian.tencent.com/developers/companyApis/startFlows/CreateFlow" target="_blank">创建签署流程</a>和<a href="https://qian.tencent.com/developers/companyApis/startFlows/StartFlow" target="_blank">发起签署流程</a>接口使用。具体逻辑可以参考下图:
|
|
279
280
|
|
|
280
281
|
# 
|
|
281
282
|
|
|
283
|
+
|
|
284
|
+
# ### 填充模版中定义的填写控件
|
|
285
|
+
# 模版中配置的<font color="red">发起人填充控件</font>可以通过本接口的**FormFields数组**字段填充
|
|
286
|
+
# 
|
|
287
|
+
# 填充的传参示例如下
|
|
288
|
+
# ```
|
|
289
|
+
# request.FormFields = [{
|
|
290
|
+
# "ComponentName": "项目的名字",
|
|
291
|
+
# "ComponentValue": "休闲山庄"
|
|
292
|
+
# }, {
|
|
293
|
+
# "ComponentName": "项目的地址",
|
|
294
|
+
# "ComponentValue": "凤凰山北侧",
|
|
295
|
+
# }, {
|
|
296
|
+
# "ComponentName": "范围",
|
|
297
|
+
# "ComponentValue": "凤凰山至107国道",
|
|
298
|
+
# }, {
|
|
299
|
+
# "ComponentName": "面积",
|
|
300
|
+
# "ComponentValue": "100亩",
|
|
301
|
+
# }, {
|
|
302
|
+
# "ComponentName": "基本情况",
|
|
303
|
+
# "ComponentValue": "完好",
|
|
304
|
+
# }, , {
|
|
305
|
+
# "ComponentName": "用途",
|
|
306
|
+
# "ComponentValue": "经营农家乐",
|
|
307
|
+
# }
|
|
308
|
+
# ]
|
|
309
|
+
# ```
|
|
310
|
+
# 合成后合同样子示例
|
|
311
|
+
# 
|
|
312
|
+
|
|
282
313
|
# @param request: Request instance for CreateDocument.
|
|
283
314
|
# @type request: :class:`Tencentcloud::ess::V20201111::CreateDocumentRequest`
|
|
284
315
|
# @rtype: :class:`Tencentcloud::ess::V20201111::CreateDocumentResponse`
|
data/lib/v20201111/models.rb
CHANGED
|
@@ -2225,13 +2225,18 @@ module TencentCloud
|
|
|
2225
2225
|
# @param Agent: 代理企业和员工的信息。
|
|
2226
2226
|
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
2227
2227
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
|
2228
|
+
# @param ReportType: 指定申请的报告类型,可选类型如下:
|
|
2229
|
+
# <ul><li> **0** :合同签署报告(默认)</li>
|
|
2230
|
+
# <li> **1** :公证处核验报告</li></ul>
|
|
2231
|
+
# @type ReportType: Integer
|
|
2228
2232
|
|
|
2229
|
-
attr_accessor :Operator, :FlowId, :Agent
|
|
2233
|
+
attr_accessor :Operator, :FlowId, :Agent, :ReportType
|
|
2230
2234
|
|
|
2231
|
-
def initialize(operator=nil, flowid=nil, agent=nil)
|
|
2235
|
+
def initialize(operator=nil, flowid=nil, agent=nil, reporttype=nil)
|
|
2232
2236
|
@Operator = operator
|
|
2233
2237
|
@FlowId = flowid
|
|
2234
2238
|
@Agent = agent
|
|
2239
|
+
@ReportType = reporttype
|
|
2235
2240
|
end
|
|
2236
2241
|
|
|
2237
2242
|
def deserialize(params)
|
|
@@ -2244,6 +2249,7 @@ module TencentCloud
|
|
|
2244
2249
|
@Agent = Agent.new
|
|
2245
2250
|
@Agent.deserialize(params['Agent'])
|
|
2246
2251
|
end
|
|
2252
|
+
@ReportType = params['ReportType']
|
|
2247
2253
|
end
|
|
2248
2254
|
end
|
|
2249
2255
|
|
|
@@ -5510,13 +5516,18 @@ module TencentCloud
|
|
|
5510
5516
|
# @param Agent: 代理企业和员工的信息。
|
|
5511
5517
|
# 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
5512
5518
|
# @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
|
|
5519
|
+
# @param ReportType: 指定申请的报告类型,可选类型如下:
|
|
5520
|
+
# <ul><li> **0** :合同签署报告(默认)</li>
|
|
5521
|
+
# <li> **1** :公证处核验报告</li></ul>
|
|
5522
|
+
# @type ReportType: Integer
|
|
5513
5523
|
|
|
5514
|
-
attr_accessor :Operator, :ReportId, :Agent
|
|
5524
|
+
attr_accessor :Operator, :ReportId, :Agent, :ReportType
|
|
5515
5525
|
|
|
5516
|
-
def initialize(operator=nil, reportid=nil, agent=nil)
|
|
5526
|
+
def initialize(operator=nil, reportid=nil, agent=nil, reporttype=nil)
|
|
5517
5527
|
@Operator = operator
|
|
5518
5528
|
@ReportId = reportid
|
|
5519
5529
|
@Agent = agent
|
|
5530
|
+
@ReportType = reporttype
|
|
5520
5531
|
end
|
|
5521
5532
|
|
|
5522
5533
|
def deserialize(params)
|
|
@@ -5529,6 +5540,7 @@ module TencentCloud
|
|
|
5529
5540
|
@Agent = Agent.new
|
|
5530
5541
|
@Agent.deserialize(params['Agent'])
|
|
5531
5542
|
end
|
|
5543
|
+
@ReportType = params['ReportType']
|
|
5532
5544
|
end
|
|
5533
5545
|
end
|
|
5534
5546
|
|
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.762
|
|
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-01
|
|
11
|
+
date: 2024-02-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|