tencentcloud-sdk-essbasic 3.0.760 → 3.0.762

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 859ad4e81a2adbe4f21107f278a3d41172bc8073
4
- data.tar.gz: 8ff698f1add1b12c03f42c50c1e3a060bf7e8312
3
+ metadata.gz: a8a67f423fb46e7f6abbfe54fc854a2901e5c3aa
4
+ data.tar.gz: ab2b3e514c8474c7aed92d2ffed3b6323e5efa12
5
5
  SHA512:
6
- metadata.gz: c5dfb3db202ed6dba13e304b730704e4ce654793080dfe657675a05f6b5ff2f1307c0656da1d053b4da59a9551f23b563bbfe3a81299570abe36e59898c47273
7
- data.tar.gz: 7269d3d674be14460a5e97ed64641a4442685ed3e4ef4c42c296049e8bd0694395aa2505e22a43f3eb7878582981a8b91ddca581440ca7c21a06766ae8ebd1c5
6
+ metadata.gz: 47feb86a8031365d8b72740700346031605eab460273c96d4750ef02337f0088c81a824a731c39efc9a5bfdd659b634d3cc9f99bd7e4d9021badbe2cdc617afc
7
+ data.tar.gz: 2686e1a81802790ee6e4b426548c4517ed8ce79f3594e8db06c3930639c237e503b2f45528124a746052facc6d5674f257fa15fa43e467480e78c550522e49e1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.760
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结构体说明
@@ -1798,7 +1829,7 @@ module TencentCloud
1798
1829
 
1799
1830
  # 4. <font color="red">静默(自动)签署不支持合同签署方存在填写</font>
1800
1831
 
1801
- # 5. <font color="red">在下一步创建签署链接前,建议等待DocumentFill </font>[PDF合成完成的回调](https://qian.tencent.com/developers/partner/callback_types_file_resources)或者睡眠几秒,尤其是当模板中存在动态表格等复杂填写控件时,因为合成过程可能会耗费秒级别的时间。
1832
+ # 5. <font color="red">在下一步创建签署链接前,建议等待DocumentFill </font> <a href="https://qian.tencent.com/developers/partner/callback_types_file_resources">PDF合成完成的回调</a>或者睡眠几秒,尤其是当模板中存在动态表格等复杂填写控件时,因为合成过程可能会耗费秒级别的时间。
1802
1833
 
1803
1834
  # @param request: Request instance for CreateFlowsByTemplates.
1804
1835
  # @type request: :class:`Tencentcloud::essbasic::V20210526::CreateFlowsByTemplatesRequest`
@@ -4699,6 +4699,10 @@ module TencentCloud
4699
4699
  # <ul><li> <b>PageRanges</b> :PageRange的数组,通过PageRanges属性设置该印章在PDF所有页面上盖章(适用于标书在所有页面盖章的情况)</li></ul>
4700
4700
  # <b>参数样例</b>:` "{"PageRange":[{"BeginPage":1,"EndPage":-1}]}"`
4701
4701
 
4702
+ # <font color="red">签署印章旋转功能,当ComponentType为SIGN_SIGNATURE、SIGN_DATE、SIGN_SEAL时</font>,可以通过以下参数设置签署图片的旋转角度:
4703
+ # <ul><li> <b>Rotate</b>:旋转角度,支持范围:-360:360,为正整数时,为顺时针旋转;为负整数时,为逆时针旋转。</li>
4704
+ # <li> <b>RotateRelation</b>:旋转关联控件,用于指定关联旋转的控件。例如:让印章控件和签署日期控件按照印章控件为中心旋转(此时,设置印章控件的RotateRelation为日期控件的ComponentId,设置日期签署控件的RotateRelation为印章控件的ComponentId)。</li></ul>
4705
+ # <b>参数样例</b>:`{"Rotate":-30,"RotateRelation":"Component_Id1"}`
4702
4706
 
4703
4707
  # <font color="red">关键字模式下支持关键字找不到的情况下不进行报错的设置</font>
4704
4708
  # <ul><li> <b>IgnoreKeywordError</b> :1-关键字查找不到时不进行报错</li></ul>
@@ -4964,16 +4968,21 @@ module TencentCloud
4964
4968
  # @type FlowId: String
4965
4969
  # @param Operator: 暂未开放
4966
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
4967
4975
 
4968
- attr_accessor :Agent, :FlowId, :Operator
4976
+ attr_accessor :Agent, :FlowId, :Operator, :ReportType
4969
4977
  extend Gem::Deprecate
4970
4978
  deprecate :Operator, :none, 2024, 1
4971
4979
  deprecate :Operator=, :none, 2024, 1
4972
4980
 
4973
- def initialize(agent=nil, flowid=nil, operator=nil)
4981
+ def initialize(agent=nil, flowid=nil, operator=nil, reporttype=nil)
4974
4982
  @Agent = agent
4975
4983
  @FlowId = flowid
4976
4984
  @Operator = operator
4985
+ @ReportType = reporttype
4977
4986
  end
4978
4987
 
4979
4988
  def deserialize(params)
@@ -4986,6 +4995,7 @@ module TencentCloud
4986
4995
  @Operator = UserInfo.new
4987
4996
  @Operator.deserialize(params['Operator'])
4988
4997
  end
4998
+ @ReportType = params['ReportType']
4989
4999
  end
4990
5000
  end
4991
5001
 
@@ -5724,6 +5734,8 @@ module TencentCloud
5724
5734
  # <li> **APP** :第三方App或小程序跳转电子签小程序的path, App或者小程序跳转适合此类型</li>
5725
5735
  # <li> **LONGURL2WEIXINAPP** :跳转电子签小程序的链接, H5跳转适合此类型,此时返回长链</li></ul>
5726
5736
 
5737
+ # **注:**动态签署人场景,如果签署链接类型设置为`APP`,则仅支持跳转到封面页。
5738
+
5727
5739
  # 详细使用场景可以参数接口说明中的 **主要使用场景可以更加EndPoint分类如下**
5728
5740
  # @type Endpoint: String
5729
5741
  # @param GenerateType: 签署链接生成类型,可以选择的类型如下
@@ -6048,16 +6060,21 @@ module TencentCloud
6048
6060
  # @type ReportId: String
6049
6061
  # @param Operator: 暂未开放
6050
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
6051
6067
 
6052
- attr_accessor :Agent, :ReportId, :Operator
6068
+ attr_accessor :Agent, :ReportId, :Operator, :ReportType
6053
6069
  extend Gem::Deprecate
6054
6070
  deprecate :Operator, :none, 2024, 1
6055
6071
  deprecate :Operator=, :none, 2024, 1
6056
6072
 
6057
- def initialize(agent=nil, reportid=nil, operator=nil)
6073
+ def initialize(agent=nil, reportid=nil, operator=nil, reporttype=nil)
6058
6074
  @Agent = agent
6059
6075
  @ReportId = reportid
6060
6076
  @Operator = operator
6077
+ @ReportType = reporttype
6061
6078
  end
6062
6079
 
6063
6080
  def deserialize(params)
@@ -6070,6 +6087,7 @@ module TencentCloud
6070
6087
  @Operator = UserInfo.new
6071
6088
  @Operator.deserialize(params['Operator'])
6072
6089
  end
6090
+ @ReportType = params['ReportType']
6073
6091
  end
6074
6092
  end
6075
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.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