tencentcloud-sdk-essbasic 3.0.761 → 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: 52f3da405ffd093d4b6e6805cf4c95b120d9e7ba
4
- data.tar.gz: 3b63d0343ecd0ea445ea1c1b79d7a42b24fe4dbd
3
+ metadata.gz: a8a67f423fb46e7f6abbfe54fc854a2901e5c3aa
4
+ data.tar.gz: ab2b3e514c8474c7aed92d2ffed3b6323e5efa12
5
5
  SHA512:
6
- metadata.gz: 19e3dfd6dcdfd1554a274bf057b48de4438d86b8ab102d460a52a48faa21c27e2114fefda1aa46a8d281f27d6e1d317644502039b59239386dc497389beb351e
7
- data.tar.gz: 42967c02ee441dd3b6561cafd7bf69434fa144dabe928c96e63135577dcfaf5b7f21bca1d855a3cae0d0ddbd13dcea11014f5d9a08c711d66b52175cf3cb166f
6
+ metadata.gz: 47feb86a8031365d8b72740700346031605eab460273c96d4750ef02337f0088c81a824a731c39efc9a5bfdd659b634d3cc9f99bd7e4d9021badbe2cdc617afc
7
+ data.tar.gz: 2686e1a81802790ee6e4b426548c4517ed8ce79f3594e8db06c3930639c237e503b2f45528124a746052facc6d5674f257fa15fa43e467480e78c550522e49e1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.761
1
+ 3.0.762
@@ -1742,11 +1742,11 @@ module TencentCloud
1742
1742
  # 如若在模板中配置了动态表格, 上传的附件必须为A4大小
1743
1743
  # 合同发起人必须在电子签已经进行实名。
1744
1744
 
1745
- # **整体的逻辑如下**
1745
+ # ### 一. 整体的逻辑如下
1746
1746
 
1747
1747
  # ![image](https://qcloudimg.tencent-cloud.cn/raw/e193519d4383fa74782a9e19147ef01a/CreateFlowsByTemplates.png)
1748
1748
 
1749
- # **可以作为发起方和签署方的角色列表**
1749
+ # ### 二. 可以作为发起方和签署方的角色列表
1750
1750
  # <table>
1751
1751
  # <thead>
1752
1752
  # <tr>
@@ -1789,7 +1789,38 @@ module TencentCloud
1789
1789
  # </tbody>
1790
1790
  # </table>
1791
1791
 
1792
- # **注**:
1792
+ # ### 三. 填充模版中定义的填写控件
1793
+ # 模版中配置的<font color="red">发起人填充控件</font>可以通过本接口的**FormFields数组**字段填充
1794
+ # ![image](https://qcloudimg.tencent-cloud.cn/raw/37457e0e450fc221effddfcb8b1bad55.png)
1795
+ # 填充的传参示例如下
1796
+ # ```
1797
+ # request.FormFields = [{
1798
+ # "ComponentName": "项目的名字",
1799
+ # "ComponentValue": "休闲山庄"
1800
+ # }, {
1801
+ # "ComponentName": "项目的地址",
1802
+ # "ComponentValue": "凤凰山北侧",
1803
+ # }, {
1804
+ # "ComponentName": "范围",
1805
+ # "ComponentValue": "凤凰山至107国道",
1806
+ # }, {
1807
+ # "ComponentName": "面积",
1808
+ # "ComponentValue": "100亩",
1809
+ # }, {
1810
+ # "ComponentName": "基本情况",
1811
+ # "ComponentValue": "完好",
1812
+ # }, , {
1813
+ # "ComponentName": "用途",
1814
+ # "ComponentValue": "经营农家乐",
1815
+ # }
1816
+ # ]
1817
+ # ```
1818
+ # 合成后合同样子示例
1819
+ # ![image](https://qcloudimg.tencent-cloud.cn/raw/140a2fb771ac66a185d0a000d37485f6.png)
1820
+
1821
+
1822
+
1823
+ # ### 四. 注意
1793
1824
  # 1. 发起合同时候, 作为<font color="red">发起方的第三方子企业A员工的企业和员工必须经过实名</font>, 而作为签署方的第三方子企业A员工/个人/自然人/SaaS平台企业员工/第三方子企业B员工企业中的企业和个人/员工可以未实名
1794
1825
 
1795
1826
  # 2. 不同类型的签署方传参不同, 可以参考开发者中心的FlowApproverInfo结构体说明
@@ -4968,16 +4968,21 @@ module TencentCloud
4968
4968
  # @type FlowId: String
4969
4969
  # @param Operator: 暂未开放
4970
4970
  # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
4971
+ # @param ReportType: 指定申请的报告类型,可选类型如下:
4972
+ # <ul><li> **0** :合同签署报告(默认)</li>
4973
+ # <li> **1** :公证处核验报告</li></ul>
4974
+ # @type ReportType: Integer
4971
4975
 
4972
- attr_accessor :Agent, :FlowId, :Operator
4976
+ attr_accessor :Agent, :FlowId, :Operator, :ReportType
4973
4977
  extend Gem::Deprecate
4974
4978
  deprecate :Operator, :none, 2024, 1
4975
4979
  deprecate :Operator=, :none, 2024, 1
4976
4980
 
4977
- def initialize(agent=nil, flowid=nil, operator=nil)
4981
+ def initialize(agent=nil, flowid=nil, operator=nil, reporttype=nil)
4978
4982
  @Agent = agent
4979
4983
  @FlowId = flowid
4980
4984
  @Operator = operator
4985
+ @ReportType = reporttype
4981
4986
  end
4982
4987
 
4983
4988
  def deserialize(params)
@@ -4990,6 +4995,7 @@ module TencentCloud
4990
4995
  @Operator = UserInfo.new
4991
4996
  @Operator.deserialize(params['Operator'])
4992
4997
  end
4998
+ @ReportType = params['ReportType']
4993
4999
  end
4994
5000
  end
4995
5001
 
@@ -5728,6 +5734,8 @@ module TencentCloud
5728
5734
  # <li> **APP** :第三方App或小程序跳转电子签小程序的path, App或者小程序跳转适合此类型</li>
5729
5735
  # <li> **LONGURL2WEIXINAPP** :跳转电子签小程序的链接, H5跳转适合此类型,此时返回长链</li></ul>
5730
5736
 
5737
+ # **注:**动态签署人场景,如果签署链接类型设置为`APP`,则仅支持跳转到封面页。
5738
+
5731
5739
  # 详细使用场景可以参数接口说明中的 **主要使用场景可以更加EndPoint分类如下**
5732
5740
  # @type Endpoint: String
5733
5741
  # @param GenerateType: 签署链接生成类型,可以选择的类型如下
@@ -6052,16 +6060,21 @@ module TencentCloud
6052
6060
  # @type ReportId: String
6053
6061
  # @param Operator: 暂未开放
6054
6062
  # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
6063
+ # @param ReportType: 指定申请的报告类型,可选类型如下:
6064
+ # <ul><li> **0** :合同签署报告(默认)</li>
6065
+ # <li> **1** :公证处核验报告</li></ul>
6066
+ # @type ReportType: Integer
6055
6067
 
6056
- attr_accessor :Agent, :ReportId, :Operator
6068
+ attr_accessor :Agent, :ReportId, :Operator, :ReportType
6057
6069
  extend Gem::Deprecate
6058
6070
  deprecate :Operator, :none, 2024, 1
6059
6071
  deprecate :Operator=, :none, 2024, 1
6060
6072
 
6061
- def initialize(agent=nil, reportid=nil, operator=nil)
6073
+ def initialize(agent=nil, reportid=nil, operator=nil, reporttype=nil)
6062
6074
  @Agent = agent
6063
6075
  @ReportId = reportid
6064
6076
  @Operator = operator
6077
+ @ReportType = reporttype
6065
6078
  end
6066
6079
 
6067
6080
  def deserialize(params)
@@ -6074,6 +6087,7 @@ module TencentCloud
6074
6087
  @Operator = UserInfo.new
6075
6088
  @Operator.deserialize(params['Operator'])
6076
6089
  end
6090
+ @ReportType = params['ReportType']
6077
6091
  end
6078
6092
  end
6079
6093
 
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.761
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-30 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