tencentcloud-sdk-essbasic 3.0.457 → 3.0.458
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 +9 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d88333acf2f3da0aa48252ce98f36f891d646629
|
4
|
+
data.tar.gz: e3e0750f7afdfe2a25897e04e07c26f3848987ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2cc62a2e1452632fffcf6cec12fa501952e6277f97db556b2eb9203d1e40958573efccbebe64937b853e74ff10d4a4503f84fb8943530938ed46fdacfb9682c3
|
7
|
+
data.tar.gz: 0a8497674916070f1919f99f23f825c3805a43830bb9cc74aafdc3ef6619f500ab2803e60a37da33f178d7e10ec7ba0b0385b14bf9a2b4bbeebf2cc9edb7eb39
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.458
|
data/lib/v20210526/models.rb
CHANGED
@@ -1245,11 +1245,11 @@ module TencentCloud
|
|
1245
1245
|
# @param ChannelComponentId: 渠道控件ID。
|
1246
1246
|
# 如果不为空,属于渠道预设控件;
|
1247
1247
|
# @type ChannelComponentId: String
|
1248
|
-
# @param KeywordPage:
|
1248
|
+
# @param KeywordPage: 指定关键字页码,可选参数,指定页码后,将只在指定的页码内查找关键字,非该页码的关键字将不会查询出来
|
1249
1249
|
# @type KeywordPage: Integer
|
1250
|
-
# @param RelativeLocation:
|
1250
|
+
# @param RelativeLocation: 关键字位置模式,Middle-居中,Below-正下方,Right-正右方,LowerRight-右上角,UpperRight-右下角。示例:如果设置Middle的关键字盖章,则印章的中心会和关键字的中心重合,如果设置Below,则印章在关键字的正下方
|
1251
1251
|
# @type RelativeLocation: String
|
1252
|
-
# @param KeywordIndexes:
|
1252
|
+
# @param KeywordIndexes: 关键字索引,可选参数,如果一个关键字在PDF文件中存在多个,可以通过关键字索引指定使用第几个关键字作为最后的结果,可指定多个索引。示例[0,2],说明使用PDF文件内第1个和第3个关键字位置。
|
1253
1253
|
# @type KeywordIndexes: Array
|
1254
1254
|
|
1255
1255
|
attr_accessor :ComponentId, :ComponentType, :ComponentName, :ComponentRequired, :ComponentRecipientId, :FileIndex, :GenerateMode, :ComponentWidth, :ComponentHeight, :ComponentPage, :ComponentPosX, :ComponentPosY, :ComponentExtra, :ComponentValue, :ComponentDateFontSize, :DocumentId, :ComponentDescription, :OffsetX, :OffsetY, :ChannelComponentId, :KeywordPage, :RelativeLocation, :KeywordIndexes
|
@@ -1330,10 +1330,12 @@ module TencentCloud
|
|
1330
1330
|
# @type AutoJumpBackEvent: String
|
1331
1331
|
# @param Operator: 操作者的信息
|
1332
1332
|
# @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
|
1333
|
+
# @param AuthorizationTypes: 支持的授权方式,授权方式: "1" - 上传授权书认证 "2" - 法定代表人认证
|
1334
|
+
# @type AuthorizationTypes: Array
|
1333
1335
|
|
1334
|
-
attr_accessor :Agent, :ProxyOrganizationName, :ProxyOperatorName, :Module, :ModuleId, :UniformSocialCreditCode, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :Operator
|
1336
|
+
attr_accessor :Agent, :ProxyOrganizationName, :ProxyOperatorName, :Module, :ModuleId, :UniformSocialCreditCode, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :Operator, :AuthorizationTypes
|
1335
1337
|
|
1336
|
-
def initialize(agent=nil, proxyorganizationname=nil, proxyoperatorname=nil, _module=nil, moduleid=nil, uniformsocialcreditcode=nil, menustatus=nil, endpoint=nil, autojumpbackevent=nil, operator=nil)
|
1338
|
+
def initialize(agent=nil, proxyorganizationname=nil, proxyoperatorname=nil, _module=nil, moduleid=nil, uniformsocialcreditcode=nil, menustatus=nil, endpoint=nil, autojumpbackevent=nil, operator=nil, authorizationtypes=nil)
|
1337
1339
|
@Agent = agent
|
1338
1340
|
@ProxyOrganizationName = proxyorganizationname
|
1339
1341
|
@ProxyOperatorName = proxyoperatorname
|
@@ -1344,6 +1346,7 @@ module TencentCloud
|
|
1344
1346
|
@Endpoint = endpoint
|
1345
1347
|
@AutoJumpBackEvent = autojumpbackevent
|
1346
1348
|
@Operator = operator
|
1349
|
+
@AuthorizationTypes = authorizationtypes
|
1347
1350
|
end
|
1348
1351
|
|
1349
1352
|
def deserialize(params)
|
@@ -1363,6 +1366,7 @@ module TencentCloud
|
|
1363
1366
|
@Operator = UserInfo.new
|
1364
1367
|
@Operator.deserialize(params['Operator'])
|
1365
1368
|
end
|
1369
|
+
@AuthorizationTypes = params['AuthorizationTypes']
|
1366
1370
|
end
|
1367
1371
|
end
|
1368
1372
|
|
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.458
|
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-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|