tencentcloud-sdk-essbasic 3.0.720 → 3.0.721

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210526/models.rb +1 -114
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e8cf7562b951f9410f2966684a4acd1f769141f
4
- data.tar.gz: d8383ba227762a024fc56003d37df5082f0475a9
3
+ metadata.gz: e0ebedbcbe0474e19b26d33f516ba2f4e818e7ce
4
+ data.tar.gz: f7d80d3547fa4861f9143bad9959510607be027c
5
5
  SHA512:
6
- metadata.gz: de381dc30fa5e78b9e9200d88d68f61c3654a9d2ea383d8cc2cec8be447da5cd93bb67b79d3cbcedcf93d518f9f74c9bc34ec787ff68a64a81c134b1b560bb26
7
- data.tar.gz: 3fbc45b65c16c53eec8a7ec19ff7b226d46ff16cb1311893fad5fe0c8e29985856b8ef6ee02e612dddf59cd0c35157183be6343620cf120eab361eacfaea80ab
6
+ metadata.gz: d1474e50ed44aa635b5f252dad72ca83c877f7ae279adfb425265f6c62392d38a6d4936bce2c5bf392a11241d3374695b4c928370d75fcb95da1b62ac034ad99
7
+ data.tar.gz: 1247b61737f1dad1e9a177c6dc196b445d5eb48dabc839ceeb1216926a91e18c71b8dc4646ea5ca7ded0725d39d27d96b9d3510fb605e098cbcfcbc03da3e027
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.720
1
+ 3.0.721
@@ -1331,7 +1331,7 @@ module TencentCloud
1331
1331
  # @param UserData: 用户自定义参数
1332
1332
  # <ul>
1333
1333
  # <li>目前仅支持EmbedType=CREATE_TEMPLATE时传入</li>
1334
- # <li>指定后,创建,编辑,删除模版时,回调都会携带该userData</li>
1334
+ # <li>指定后,创建,编辑,删除模板时,回调都会携带该userData</li>
1335
1335
  # <li>支持的格式:json字符串的BASE64编码字符串</li>
1336
1336
  # <li>示例:<ul>
1337
1337
  # <li>json字符串:{"ComeFrom":"xxx"},BASE64编码:eyJDb21lRnJvbSI6Inh4eCJ9</li>
@@ -6920,119 +6920,6 @@ module TencentCloud
6920
6920
  end
6921
6921
 
6922
6922
  # 此结构体 (FlowInfo) 用于描述签署流程信息。
6923
-
6924
- # 【数据表格传参说明】
6925
- # 当模板的 ComponentType='DYNAMIC_TABLE'时( 第三方应用集成或集成版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
6926
- # 输入示例1:
6927
-
6928
- # ```
6929
- # {
6930
- # "headers":[
6931
- # {
6932
- # "content":"head1"
6933
- # },
6934
- # {
6935
- # "content":"head2"
6936
- # },
6937
- # {
6938
- # "content":"head3"
6939
- # }
6940
- # ],
6941
- # "rowCount":3,
6942
- # "body":{
6943
- # "cells":[
6944
- # {
6945
- # "rowStart":1,
6946
- # "rowEnd":1,
6947
- # "columnStart":1,
6948
- # "columnEnd":1,
6949
- # "content":"123"
6950
- # },
6951
- # {
6952
- # "rowStart":2,
6953
- # "rowEnd":3,
6954
- # "columnStart":1,
6955
- # "columnEnd":2,
6956
- # "content":"456"
6957
- # },
6958
- # {
6959
- # "rowStart":3,
6960
- # "rowEnd":3,
6961
- # "columnStart":3,
6962
- # "columnEnd":3,
6963
- # "content":"789"
6964
- # }
6965
- # ]
6966
- # }
6967
- # }
6968
-
6969
- # ```
6970
-
6971
- # 输入示例2(表格表头宽度比例配置):
6972
-
6973
- # ```
6974
- # {
6975
- # "headers":[
6976
- # {
6977
- # "content":"head1",
6978
- # "widthPercent": 30
6979
- # },
6980
- # {
6981
- # "content":"head2",
6982
- # "widthPercent": 30
6983
- # },
6984
- # {
6985
- # "content":"head3",
6986
- # "widthPercent": 40
6987
- # }
6988
- # ],
6989
- # "rowCount":3,
6990
- # "body":{
6991
- # "cells":[
6992
- # {
6993
- # "rowStart":1,
6994
- # "rowEnd":1,
6995
- # "columnStart":1,
6996
- # "columnEnd":1,
6997
- # "content":"123"
6998
- # },
6999
- # {
7000
- # "rowStart":2,
7001
- # "rowEnd":3,
7002
- # "columnStart":1,
7003
- # "columnEnd":2,
7004
- # "content":"456"
7005
- # },
7006
- # {
7007
- # "rowStart":3,
7008
- # "rowEnd":3,
7009
- # "columnStart":3,
7010
- # "columnEnd":3,
7011
- # "content":"789"
7012
- # }
7013
- # ]
7014
- # }
7015
- # }
7016
-
7017
- # ```
7018
- # 表格参数说明
7019
-
7020
- # | 名称 | 类型 | 描述 |
7021
- # | ------------------- | ------- | ------------------------------------------------- |
7022
- # | headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100 |
7023
- # | rowCount | Integer | 表格内容最大行数 |
7024
- # | cells.N.rowStart | Integer | 单元格坐标:行起始index |
7025
- # | cells.N.rowEnd | Integer | 单元格坐标:行结束index |
7026
- # | cells.N.columnStart | Integer | 单元格坐标:列起始index |
7027
- # | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
7028
- # | cells.N.content | String | 单元格内容,字数不超过100 |
7029
-
7030
- # 表格参数headers说明
7031
-
7032
- # | 名称 | 类型 | 描述 |
7033
- # | ------------------- | ------- | ------------------------------------------------- |
7034
- # | widthPercent | Integer | 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35 |
7035
- # | content | String | 表头单元格内容,字数不超过100 |
7036
6923
  class FlowInfo < TencentCloud::Common::AbstractModel
7037
6924
  # @param FlowName: 合同流程的名称(可自定义此名称),长度不能超过200,只能由中文、字母、数字和下划线组成。
7038
6925
  # @type FlowName: String
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.720
4
+ version: 3.0.721
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-12-04 00:00:00.000000000 Z
11
+ date: 2023-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common