tencentcloud-sdk-essbasic 3.0.719 → 3.0.720
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210526/models.rb +54 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e8cf7562b951f9410f2966684a4acd1f769141f
|
|
4
|
+
data.tar.gz: d8383ba227762a024fc56003d37df5082f0475a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de381dc30fa5e78b9e9200d88d68f61c3654a9d2ea383d8cc2cec8be447da5cd93bb67b79d3cbcedcf93d518f9f74c9bc34ec787ff68a64a81c134b1b560bb26
|
|
7
|
+
data.tar.gz: 3fbc45b65c16c53eec8a7ec19ff7b226d46ff16cb1311893fad5fe0c8e29985856b8ef6ee02e612dddf59cd0c35157183be6343620cf120eab361eacfaea80ab
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.720
|
data/lib/v20210526/models.rb
CHANGED
|
@@ -7343,6 +7343,56 @@ module TencentCloud
|
|
|
7343
7343
|
# }
|
|
7344
7344
|
|
|
7345
7345
|
# ```
|
|
7346
|
+
|
|
7347
|
+
|
|
7348
|
+
# 输入示例3(表格设置字体加粗颜色):
|
|
7349
|
+
|
|
7350
|
+
# ```
|
|
7351
|
+
# {
|
|
7352
|
+
# "headers":[
|
|
7353
|
+
# {
|
|
7354
|
+
# "content":"head1"
|
|
7355
|
+
# },
|
|
7356
|
+
# {
|
|
7357
|
+
# "content":"head2"
|
|
7358
|
+
# },
|
|
7359
|
+
# {
|
|
7360
|
+
# "content":"head3"
|
|
7361
|
+
# }
|
|
7362
|
+
# ],
|
|
7363
|
+
# "rowCount":3,
|
|
7364
|
+
# "body":{
|
|
7365
|
+
# "cells":[
|
|
7366
|
+
# {
|
|
7367
|
+
# "rowStart":1,
|
|
7368
|
+
# "rowEnd":1,
|
|
7369
|
+
# "columnStart":1,
|
|
7370
|
+
# "columnEnd":1,
|
|
7371
|
+
# "content":"123",
|
|
7372
|
+
# "style": "{\"color\": \"#b50000\", \"fontSize\": 12,\"bold\": true,\"align\": \"CENTER\"}"
|
|
7373
|
+
# },
|
|
7374
|
+
# {
|
|
7375
|
+
# "rowStart":2,
|
|
7376
|
+
# "rowEnd":3,
|
|
7377
|
+
# "columnStart":1,
|
|
7378
|
+
# "columnEnd":2,
|
|
7379
|
+
# "content":"456",
|
|
7380
|
+
# "style": "{\"color\": \"#b50000\", \"fontSize\": 12,\"bold\": true,\"align\": \"LEFT\"}"
|
|
7381
|
+
# },
|
|
7382
|
+
# {
|
|
7383
|
+
# "rowStart":3,
|
|
7384
|
+
# "rowEnd":3,
|
|
7385
|
+
# "columnStart":3,
|
|
7386
|
+
# "columnEnd":3,
|
|
7387
|
+
# "content":"789",
|
|
7388
|
+
# "style": "{\"color\": \"#b500bf\", \"fontSize\": 12,\"bold\": false,\"align\": \"RIGHT\"}"
|
|
7389
|
+
# }
|
|
7390
|
+
# ]
|
|
7391
|
+
# }
|
|
7392
|
+
# }
|
|
7393
|
+
|
|
7394
|
+
# ```
|
|
7395
|
+
|
|
7346
7396
|
# 表格参数说明
|
|
7347
7397
|
|
|
7348
7398
|
# | 名称 | 类型 | 描述 |
|
|
@@ -7354,10 +7404,14 @@ module TencentCloud
|
|
|
7354
7404
|
# | cells.N.columnStart | Integer | 单元格坐标:列起始index |
|
|
7355
7405
|
# | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
|
|
7356
7406
|
# | cells.N.content | String | 单元格内容,字数不超过100 |
|
|
7407
|
+
# | cells.N.style | String | 单元格字体风格配置 ,风格配置的json字符串 如: {"font":"黑体","fontSize":12,"color":"FFFFFF","bold":true,"align":"CENTER"} |
|
|
7357
7408
|
|
|
7358
7409
|
# 表格参数headers说明
|
|
7359
7410
|
# widthPercent Integer 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35
|
|
7411
|
+
|
|
7360
7412
|
# content String 表头单元格内容,字数不超过100
|
|
7413
|
+
|
|
7414
|
+
# style String 为字体风格设置 风格支持: font : 目前支持 黑体、宋体; fontSize: 6-72; color:000000-FFFFFF 字符串形如: "FFFFFF"; bold : 是否加粗, true : 加粗 false: 不加粗; align: 对其方式, 支持 LEFT / RIGHT / CENTER
|
|
7361
7415
|
class FormField < TencentCloud::Common::AbstractModel
|
|
7362
7416
|
# @param ComponentValue: 控件填充值,ComponentType和传入值格式对应关系如下:
|
|
7363
7417
|
# <ul>
|