tencentcloud-sdk-mrs 1.0.326 → 1.0.329
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/v20200910/models.rb +14 -2
- 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: 5af3ec7b25ee23200a249bae66723bf83462d4f9
|
4
|
+
data.tar.gz: 8ea60018801fb5ff4e8afb23707cc6125241f6a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2205b425fc97886ad2127ff39b9515922a079b8a886d6384ac39a8bb601a68afcb59a3dbb80c8afd8105f5bd72781ad5634a502867a44b831f63e611ad9cf24
|
7
|
+
data.tar.gz: b39ad6c174886cc3715bc0457e6a1a222fa9e237258aaef2cd6d627da33414bfcee1334b0820c7004b36d35dd46a3cfaf35b2a7b2228cf5a95b18168b55bb814
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.329
|
data/lib/v20200910/models.rb
CHANGED
@@ -1138,13 +1138,17 @@ module TencentCloud
|
|
1138
1138
|
# @param Template: 报告结构化结果
|
1139
1139
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1140
1140
|
# @type Template: :class:`Tencentcloud::Mrs.v20200910.models.Template`
|
1141
|
+
# @param TextTypeList: 多级分类结果
|
1142
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1143
|
+
# @type TextTypeList: Array
|
1141
1144
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1142
1145
|
# @type RequestId: String
|
1143
1146
|
|
1144
|
-
attr_accessor :Template, :RequestId
|
1147
|
+
attr_accessor :Template, :TextTypeList, :RequestId
|
1145
1148
|
|
1146
|
-
def initialize(template=nil, requestid=nil)
|
1149
|
+
def initialize(template=nil, texttypelist=nil, requestid=nil)
|
1147
1150
|
@Template = template
|
1151
|
+
@TextTypeList = texttypelist
|
1148
1152
|
@RequestId = requestid
|
1149
1153
|
end
|
1150
1154
|
|
@@ -1153,6 +1157,14 @@ module TencentCloud
|
|
1153
1157
|
@Template = Template.new
|
1154
1158
|
@Template.deserialize(params['Template'])
|
1155
1159
|
end
|
1160
|
+
unless params['TextTypeList'].nil?
|
1161
|
+
@TextTypeList = []
|
1162
|
+
params['TextTypeList'].each do |i|
|
1163
|
+
texttype_tmp = TextType.new
|
1164
|
+
texttype_tmp.deserialize(i)
|
1165
|
+
@TextTypeList << texttype_tmp
|
1166
|
+
end
|
1167
|
+
end
|
1156
1168
|
@RequestId = params['RequestId']
|
1157
1169
|
end
|
1158
1170
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mrs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.329
|
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-06-
|
11
|
+
date: 2022-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|