tencentcloud-sdk-essbasic 3.0.452 → 3.0.453
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/tencentcloud-sdk-essbasic.rb +3 -3
- data/lib/v20210526/models.rb +37 -5
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f92cb8b59b24b4e410ee7788e26fcaec4ca946f
|
4
|
+
data.tar.gz: f9799f3d1e95d9686d803adae63962bea219923c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aba109a6634545866ab07bd81ba5511cf15bddf965847e2b0d382b444caff88503ad74eba0a09b5435bf50cac3ad2bf1240e5c263c609652eaefd331e3105bd0
|
7
|
+
data.tar.gz: d9be8441076df90f4f3992e39a2c8197651ec4f44757c321c076644c39fe181cb3450d2dd74638bd185bc60ad6e875c7f39361d314a9ca3cf634dca914adb83b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.453
|
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
require 'tencentcloud-sdk-common'
|
4
4
|
|
5
|
-
require_relative 'v20201222/client'
|
6
|
-
require_relative 'v20201222/models'
|
7
|
-
|
8
5
|
require_relative 'v20210526/client'
|
9
6
|
require_relative 'v20210526/models'
|
10
7
|
|
8
|
+
require_relative 'v20201222/client'
|
9
|
+
require_relative 'v20201222/models'
|
10
|
+
|
11
11
|
module TencentCloud
|
12
12
|
module Essbasic
|
13
13
|
end
|
data/lib/v20210526/models.rb
CHANGED
@@ -634,14 +634,17 @@ module TencentCloud
|
|
634
634
|
# @param ReviewMessage: 审核原因
|
635
635
|
# 当ReviewType 是REJECT 时此字段必填,字符串长度不超过200
|
636
636
|
# @type ReviewMessage: String
|
637
|
+
# @param RecipientId: 签署节点审核时需要指定
|
638
|
+
# @type RecipientId: String
|
637
639
|
|
638
|
-
attr_accessor :Agent, :FlowId, :ReviewType, :ReviewMessage
|
640
|
+
attr_accessor :Agent, :FlowId, :ReviewType, :ReviewMessage, :RecipientId
|
639
641
|
|
640
|
-
def initialize(agent=nil, flowid=nil, reviewtype=nil, reviewmessage=nil)
|
642
|
+
def initialize(agent=nil, flowid=nil, reviewtype=nil, reviewmessage=nil, recipientid=nil)
|
641
643
|
@Agent = agent
|
642
644
|
@FlowId = flowid
|
643
645
|
@ReviewType = reviewtype
|
644
646
|
@ReviewMessage = reviewmessage
|
647
|
+
@RecipientId = recipientid
|
645
648
|
end
|
646
649
|
|
647
650
|
def deserialize(params)
|
@@ -652,6 +655,7 @@ module TencentCloud
|
|
652
655
|
@FlowId = params['FlowId']
|
653
656
|
@ReviewType = params['ReviewType']
|
654
657
|
@ReviewMessage = params['ReviewMessage']
|
658
|
+
@RecipientId = params['RecipientId']
|
655
659
|
end
|
656
660
|
end
|
657
661
|
|
@@ -1104,7 +1108,8 @@ module TencentCloud
|
|
1104
1108
|
# DYNAMIC_TABLE - 动态表格控件;
|
1105
1109
|
# ATTACHMENT - 附件控件;
|
1106
1110
|
# SELECTOR - 选择器控件;
|
1107
|
-
# DATE - 日期控件;默认是格式化为xxxx年xx月xx
|
1111
|
+
# DATE - 日期控件;默认是格式化为xxxx年xx月xx日;
|
1112
|
+
# DISTRICT - 省市区行政区划控件;
|
1108
1113
|
|
1109
1114
|
# 如果是SignComponent控件类型,则可选的字段为
|
1110
1115
|
# SIGN_SEAL - 签署印章控件;
|
@@ -1141,12 +1146,27 @@ module TencentCloud
|
|
1141
1146
|
# @param ComponentPosY: 参数控件Y位置,单位px
|
1142
1147
|
# @type ComponentPosY: Float
|
1143
1148
|
# @param ComponentExtra: 参数控件样式,json格式表述
|
1149
|
+
|
1144
1150
|
# 不同类型的控件会有部分非通用参数
|
1151
|
+
|
1145
1152
|
# TEXT/MULTI_LINE_TEXT控件可以指定
|
1146
1153
|
# 1 Font:目前只支持黑体、宋体
|
1147
1154
|
# 2 FontSize: 范围12-72
|
1148
1155
|
# 3 FontAlign: Left/Right/Center,左对齐/居中/右对齐
|
1149
1156
|
# 例如:{"FontSize":12}
|
1157
|
+
|
1158
|
+
# ComponentType为FILL_IMAGE时,支持以下参数:
|
1159
|
+
# NotMakeImageCenter:bool。是否设置图片居中。false:居中(默认)。 true: 不居中
|
1160
|
+
# FillMethod: int. 填充方式。0-铺满(默认);1-等比例缩放
|
1161
|
+
|
1162
|
+
# ComponentType为SIGN_SIGNATURE类型可以控制签署方式
|
1163
|
+
# {“ComponentTypeLimit”: [“xxx”]}
|
1164
|
+
# xxx可以为:
|
1165
|
+
# HANDWRITE – 手写签名
|
1166
|
+
# BORDERLESS_ESIGN – 自动生成无边框腾讯体
|
1167
|
+
# OCR_ESIGN -- AI智能识别手写签名
|
1168
|
+
# ESIGN -- 个人印章类型
|
1169
|
+
# 如:{“ComponentTypeLimit”: [“BORDERLESS_ESIGN”]}
|
1150
1170
|
# @type ComponentExtra: String
|
1151
1171
|
# @param ComponentValue: 控件填充vaule,ComponentType和传入值类型对应关系:
|
1152
1172
|
# TEXT - 文本内容
|
@@ -1171,10 +1191,16 @@ module TencentCloud
|
|
1171
1191
|
# @type OffsetX: Float
|
1172
1192
|
# @param OffsetY: 指定关键字时纵坐标偏移量,单位pt
|
1173
1193
|
# @type OffsetY: Float
|
1194
|
+
# @param KeywordPage: 指定关键字页码
|
1195
|
+
# @type KeywordPage: Integer
|
1196
|
+
# @param RelativeLocation: 关键字位置模式
|
1197
|
+
# @type RelativeLocation: String
|
1198
|
+
# @param KeywordIndexes: 关键字索引
|
1199
|
+
# @type KeywordIndexes: Array
|
1174
1200
|
|
1175
|
-
attr_accessor :ComponentId, :ComponentType, :ComponentName, :ComponentRequired, :ComponentRecipientId, :FileIndex, :GenerateMode, :ComponentWidth, :ComponentHeight, :ComponentPage, :ComponentPosX, :ComponentPosY, :ComponentExtra, :ComponentValue, :ComponentDateFontSize, :DocumentId, :ComponentDescription, :OffsetX, :OffsetY
|
1201
|
+
attr_accessor :ComponentId, :ComponentType, :ComponentName, :ComponentRequired, :ComponentRecipientId, :FileIndex, :GenerateMode, :ComponentWidth, :ComponentHeight, :ComponentPage, :ComponentPosX, :ComponentPosY, :ComponentExtra, :ComponentValue, :ComponentDateFontSize, :DocumentId, :ComponentDescription, :OffsetX, :OffsetY, :KeywordPage, :RelativeLocation, :KeywordIndexes
|
1176
1202
|
|
1177
|
-
def initialize(componentid=nil, componenttype=nil, componentname=nil, componentrequired=nil, componentrecipientid=nil, fileindex=nil, generatemode=nil, componentwidth=nil, componentheight=nil, componentpage=nil, componentposx=nil, componentposy=nil, componentextra=nil, componentvalue=nil, componentdatefontsize=nil, documentid=nil, componentdescription=nil, offsetx=nil, offsety=nil)
|
1203
|
+
def initialize(componentid=nil, componenttype=nil, componentname=nil, componentrequired=nil, componentrecipientid=nil, fileindex=nil, generatemode=nil, componentwidth=nil, componentheight=nil, componentpage=nil, componentposx=nil, componentposy=nil, componentextra=nil, componentvalue=nil, componentdatefontsize=nil, documentid=nil, componentdescription=nil, offsetx=nil, offsety=nil, keywordpage=nil, relativelocation=nil, keywordindexes=nil)
|
1178
1204
|
@ComponentId = componentid
|
1179
1205
|
@ComponentType = componenttype
|
1180
1206
|
@ComponentName = componentname
|
@@ -1194,6 +1220,9 @@ module TencentCloud
|
|
1194
1220
|
@ComponentDescription = componentdescription
|
1195
1221
|
@OffsetX = offsetx
|
1196
1222
|
@OffsetY = offsety
|
1223
|
+
@KeywordPage = keywordpage
|
1224
|
+
@RelativeLocation = relativelocation
|
1225
|
+
@KeywordIndexes = keywordindexes
|
1197
1226
|
end
|
1198
1227
|
|
1199
1228
|
def deserialize(params)
|
@@ -1216,6 +1245,9 @@ module TencentCloud
|
|
1216
1245
|
@ComponentDescription = params['ComponentDescription']
|
1217
1246
|
@OffsetX = params['OffsetX']
|
1218
1247
|
@OffsetY = params['OffsetY']
|
1248
|
+
@KeywordPage = params['KeywordPage']
|
1249
|
+
@RelativeLocation = params['RelativeLocation']
|
1250
|
+
@KeywordIndexes = params['KeywordIndexes']
|
1219
1251
|
end
|
1220
1252
|
end
|
1221
1253
|
|
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.
|
4
|
+
version: 3.0.453
|
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-11-
|
11
|
+
date: 2022-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,11 +33,11 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/tencentcloud-sdk-essbasic.rb
|
37
|
-
- lib/v20201222/models.rb
|
38
36
|
- lib/v20201222/client.rb
|
39
|
-
- lib/
|
37
|
+
- lib/v20201222/models.rb
|
38
|
+
- lib/tencentcloud-sdk-essbasic.rb
|
40
39
|
- lib/v20210526/client.rb
|
40
|
+
- lib/v20210526/models.rb
|
41
41
|
- lib/VERSION
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
43
43
|
licenses:
|