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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 24834bd7cd0cda391e536f867ecdf2ecd7f665e9
4
- data.tar.gz: 4e3b3a8a6cca9debae539b76cbee0ab09d9c8e6a
3
+ metadata.gz: 14fc8cdea27f4d13487f6851ddc8b051194be715
4
+ data.tar.gz: fd035585a10d797aa30457e654675f4993651bcf
5
5
  SHA512:
6
- metadata.gz: 6cbd043a434274b1bb88041cd7d1046511d7599142293c85f6f54b787685ccdd13eb7979a35e8fee7244d379f5bc878a209d40687d34aa284b61c50904321f2a
7
- data.tar.gz: 41c59d078e3231ceaca0e929e3f203873597d78f93ec01fc894170a0d1a8396b019f50c23e530781a31c5dc61ca5bef035d7fee2d2572d872cdda3045dd2034e
6
+ metadata.gz: fc4cb89d1193d3dd09b6af114cd302c274404a9bb4977cc38cefe1a0d5af889918e6505eb89d9d67ba0e232c87ca3d16c902658b2373283ac2061a9874405e99
7
+ data.tar.gz: e7b2bacb5cc7a1c52484e417e5c80681e6505b7526896226aea10c0d64d5af4cd2f64e5d31923b986bd5c7d9a452b49de99ede00c50b90a6ae56868d11d8b6cf
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.760
1
+ 3.0.762
@@ -275,10 +275,41 @@ module TencentCloud
275
275
 
276
276
  # 创建签署流程电子文档<br />
277
277
 
278
- # 注:该接口需要给对应的流程指定一个模板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>接口使用。具体逻辑可以参考下图:
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
  # ![image](https://qcloudimg.tencent-cloud.cn/raw/06f2bc0f1772d8deac2f92b5df61a5ac.png)
281
282
 
283
+
284
+ # ### 填充模版中定义的填写控件
285
+ # 模版中配置的<font color="red">发起人填充控件</font>可以通过本接口的**FormFields数组**字段填充
286
+ # ![image](https://qcloudimg.tencent-cloud.cn/raw/37457e0e450fc221effddfcb8b1bad55.png)
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
+ # ![image](https://qcloudimg.tencent-cloud.cn/raw/140a2fb771ac66a185d0a000d37485f6.png)
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`
@@ -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.760
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-29 00:00:00.000000000 Z
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