tencentcloud-sdk-mps 3.0.996 → 3.0.997

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/v20190612/models.rb +20 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b35fd04cf8dbe103ca257630f69c842446065da
4
- data.tar.gz: b2317eec30d30792563820670361939b01ced0a2
3
+ metadata.gz: fddc4a5f8cab3eb317b6582ab50529bbc8d603e8
4
+ data.tar.gz: 2b884e51bdb0345994ddea37420d3299e5686f21
5
5
  SHA512:
6
- metadata.gz: 45d05b3602d5583c59ee1997021ea2977e6e1729cdc4dfba943b65830e0ebc941a655d3faba367398a12da2f418515fa6ffe7b7468b22ba27f0db596b4d82825
7
- data.tar.gz: 5a7e2a39963101eea6d60d67c8546c0b9272b63bc70ddf574918f3a4f099b9a410dc8f2e3f8f8cc51cdce2d8716958d12c64c04a116336902d1014da9fda0f31
6
+ metadata.gz: 510674f2cfb757b3f998ace3c1e8e2756875a64b1335d7693f926c3bdee3ce5e008361dc31799515928294a377fbc0f0a2f8c9a440760cb1541283a18047e32b
7
+ data.tar.gz: abd6efe6876fdb1b798ef034d8c84fd18563db562d9dbbfdb1cb4a3d66278f1c7fec4b7e4d82ff94107e1e02e86bae8422890ccf737eb52f3d35558369bffb18
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.996
1
+ 3.0.997
@@ -1817,6 +1817,10 @@ module TencentCloud
1817
1817
  # @param Summary: 分段摘要
1818
1818
  # 注意:此字段可能返回 null,表示取不到有效值。
1819
1819
  # @type Summary: String
1820
+ # @param Title: 分段标题
1821
+ # @type Title: String
1822
+ # @param Keywords: 分段关键词
1823
+ # @type Keywords: Array
1820
1824
  # @param StartTimeOffset: 分段起始时间点,秒
1821
1825
  # 注意:此字段可能返回 null,表示取不到有效值。
1822
1826
  # @type StartTimeOffset: Float
@@ -1824,16 +1828,20 @@ module TencentCloud
1824
1828
  # 注意:此字段可能返回 null,表示取不到有效值。
1825
1829
  # @type EndTimeOffset: Float
1826
1830
 
1827
- attr_accessor :Summary, :StartTimeOffset, :EndTimeOffset
1831
+ attr_accessor :Summary, :Title, :Keywords, :StartTimeOffset, :EndTimeOffset
1828
1832
 
1829
- def initialize(summary=nil, starttimeoffset=nil, endtimeoffset=nil)
1833
+ def initialize(summary=nil, title=nil, keywords=nil, starttimeoffset=nil, endtimeoffset=nil)
1830
1834
  @Summary = summary
1835
+ @Title = title
1836
+ @Keywords = keywords
1831
1837
  @StartTimeOffset = starttimeoffset
1832
1838
  @EndTimeOffset = endtimeoffset
1833
1839
  end
1834
1840
 
1835
1841
  def deserialize(params)
1836
1842
  @Summary = params['Summary']
1843
+ @Title = params['Title']
1844
+ @Keywords = params['Keywords']
1837
1845
  @StartTimeOffset = params['StartTimeOffset']
1838
1846
  @EndTimeOffset = params['EndTimeOffset']
1839
1847
  end
@@ -15149,21 +15157,29 @@ module TencentCloud
15149
15157
  # @type Description: String
15150
15158
  # @param Confidence: 智能描述的可信度,取值范围是 0 到 100。
15151
15159
  # @type Confidence: Float
15160
+ # @param Title: 智能描述标题
15161
+ # @type Title: String
15162
+ # @param Keywords: 智能描述关键词
15163
+ # @type Keywords: Array
15152
15164
  # @param Paragraphs: 分段结果。
15153
15165
  # 注意:此字段可能返回 null,表示取不到有效值。
15154
15166
  # @type Paragraphs: Array
15155
15167
 
15156
- attr_accessor :Description, :Confidence, :Paragraphs
15168
+ attr_accessor :Description, :Confidence, :Title, :Keywords, :Paragraphs
15157
15169
 
15158
- def initialize(description=nil, confidence=nil, paragraphs=nil)
15170
+ def initialize(description=nil, confidence=nil, title=nil, keywords=nil, paragraphs=nil)
15159
15171
  @Description = description
15160
15172
  @Confidence = confidence
15173
+ @Title = title
15174
+ @Keywords = keywords
15161
15175
  @Paragraphs = paragraphs
15162
15176
  end
15163
15177
 
15164
15178
  def deserialize(params)
15165
15179
  @Description = params['Description']
15166
15180
  @Confidence = params['Confidence']
15181
+ @Title = params['Title']
15182
+ @Keywords = params['Keywords']
15167
15183
  unless params['Paragraphs'].nil?
15168
15184
  @Paragraphs = []
15169
15185
  params['Paragraphs'].each do |i|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-mps
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.996
4
+ version: 3.0.997
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-11 00:00:00.000000000 Z
11
+ date: 2025-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common