tencentcloud-sdk-essbasic 3.0.379 → 3.0.381

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 +60 -0
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2ef52d0c4654b37435a1fa61c51ada75ae4e9e42
4
- data.tar.gz: 4065113060fd0c52f711dd62d2fbd76f9a60b7f1
3
+ metadata.gz: 777737cac8067f7d12b1c88ba1c9ad830f9b2afe
4
+ data.tar.gz: f04d4eacaaac070a6b6b4aa5a057fbe2c047f69d
5
5
  SHA512:
6
- metadata.gz: 96d74cff3ba986a8eb0ff0a12d3d03903d1105c2ba4affc945424dcbb26413de5a79adbd34a6e5f9e80de7d411c83eafdf0df4fd57578d57014f7924deb7774b
7
- data.tar.gz: 82c8b594687ef527a09696ea531e5e7fbdbc4ce73aed21652187054259b342e8d0d24e48345807f3642ebf8603e86ba0927c02d868aeced5d374c69d4c69f22c
6
+ metadata.gz: 68148b916d79c18d15cf0716af5b61bd736a2fba573572a16abf4a0d7df651b23f65e00c259c377727d1edbf0ce5519a26b699d77f6caac02e64ec660167a157
7
+ data.tar.gz: 5abf82d5c264d3f32b795fe20f8baeacbf389831801a66b23be45ddbf5e0c3f1ec1e7677beee9a80c54c425e083a2ef6ce36bf669c181b3d574b62768c5fc154
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.379
1
+ 3.0.381
@@ -431,6 +431,7 @@ module TencentCloud
431
431
  # @param ComponentType: 如果是Component控件类型,则可选的字段为:
432
432
  # TEXT - 普通文本控件;
433
433
  # DATE - 普通日期控件;跟TEXT相比会有校验逻辑
434
+ # DYNAMIC_TABLE-动态表格控件;
434
435
  # 如果是SignComponent控件类型,则可选的字段为
435
436
  # SIGN_SEAL - 签署印章控件;
436
437
  # SIGN_DATE - 签署日期控件;
@@ -1355,6 +1356,65 @@ module TencentCloud
1355
1356
  end
1356
1357
 
1357
1358
  # 此结构体 (FlowInfo) 用于描述签署流程信息。
1359
+
1360
+ # 【动态表格传参说明】
1361
+ # 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充动态表格(支持内容的单元格合并)
1362
+ # 输入示例
1363
+
1364
+ # ```
1365
+ # {
1366
+ # "headers":[
1367
+ # {
1368
+ # "content":"head1"
1369
+ # },
1370
+ # {
1371
+ # "content":"head2"
1372
+ # },
1373
+ # {
1374
+ # "content":"head3"
1375
+ # }
1376
+ # ],
1377
+ # "rowCount":3,
1378
+ # "body":{
1379
+ # "cells":[
1380
+ # {
1381
+ # "rowStart":1,
1382
+ # "rowEnd":1,
1383
+ # "columnStart":1,
1384
+ # "columnEnd":1,
1385
+ # "content":"123"
1386
+ # },
1387
+ # {
1388
+ # "rowStart":2,
1389
+ # "rowEnd":3,
1390
+ # "columnStart":1,
1391
+ # "columnEnd":2,
1392
+ # "content":"456"
1393
+ # },
1394
+ # {
1395
+ # "rowStart":3,
1396
+ # "rowEnd":3,
1397
+ # "columnStart":3,
1398
+ # "columnEnd":3,
1399
+ # "content":"789"
1400
+ # }
1401
+ # ]
1402
+ # }
1403
+ # }
1404
+
1405
+ # ```
1406
+
1407
+ # 表格参数说明
1408
+
1409
+ # | 名称 | 类型 | 描述 |
1410
+ # | ------------------- | ------- | ------------------------------------------------- |
1411
+ # | headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100 |
1412
+ # | rowCount | Integer | 表格内容最大行数 |
1413
+ # | cells.N.rowStart | Integer | 单元格坐标:行起始index |
1414
+ # | cells.N.rowEnd | Integer | 单元格坐标:行结束index |
1415
+ # | cells.N.columnStart | Integer | 单元格坐标:列起始index |
1416
+ # | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
1417
+ # | cells.N.content | String | 单元格内容,字数不超过100 |
1358
1418
  class FlowInfo < TencentCloud::Common::AbstractModel
1359
1419
  # @param FlowName: 合同名字,最大长度200个字符
1360
1420
  # @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.379
4
+ version: 3.0.381
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-03 00:00:00.000000000 Z
11
+ date: 2022-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common