tencentcloud-sdk-tts 3.0.539 → 3.0.540

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 497618f1ccd525874a8c3ab39f3073c67f35170b
4
- data.tar.gz: 9fc6402ba2b992109388910c5b9174793794ed93
3
+ metadata.gz: e3b3048d3eb604f5c41ddf0262ba4676c071f8f5
4
+ data.tar.gz: 8242b795b39862be2dfbb672c8e83b81ac01d33c
5
5
  SHA512:
6
- metadata.gz: 22ad9fa37ebee4308f183f85bfc00c2a6130c759b4e880f2ac66b39a921075c0510577bc49b1646836d140bd54a1737cc08e55ccf9ff00d9b0e37980ea35ef2d
7
- data.tar.gz: 7f7d443578c12da58926043a028065206bc816e1c30a5cddd3a8ce60101c4a1ddfd7599ea24096a1a29e39d8bf7d570f51b56bfeaa34de3d7eaf76437fc8ebfc
6
+ metadata.gz: 7be17d08c2eb8a707dc4b0ba127d0b7a3236b5824bbb6d34f50ce841cee15190fda738990d15979ded8760cccbc523823fdda5e3def1312071da8b7ceec85edc
7
+ data.tar.gz: b011092c1cc1f4ed8439c4d78bb5e6ad5750c17a806851796cb754860fed639d99d2dd159b414e53962a89a61f099d5f8ef117bf83bce2e67597082363f2f6b9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.539
1
+ 3.0.540
@@ -199,15 +199,19 @@ module TencentCloud
199
199
  # @type BeginIndex: Integer
200
200
  # @param EndIndex: 该字在整句中的结束位置,从0开始。
201
201
  # @type EndIndex: Integer
202
+ # @param Phoneme: 该字的音素
203
+ # 注意:此字段可能返回 null,表示取不到有效值。
204
+ # @type Phoneme: String
202
205
 
203
- attr_accessor :Text, :BeginTime, :EndTime, :BeginIndex, :EndIndex
206
+ attr_accessor :Text, :BeginTime, :EndTime, :BeginIndex, :EndIndex, :Phoneme
204
207
 
205
- def initialize(text=nil, begintime=nil, endtime=nil, beginindex=nil, endindex=nil)
208
+ def initialize(text=nil, begintime=nil, endtime=nil, beginindex=nil, endindex=nil, phoneme=nil)
206
209
  @Text = text
207
210
  @BeginTime = begintime
208
211
  @EndTime = endtime
209
212
  @BeginIndex = beginindex
210
213
  @EndIndex = endindex
214
+ @Phoneme = phoneme
211
215
  end
212
216
 
213
217
  def deserialize(params)
@@ -216,6 +220,7 @@ module TencentCloud
216
220
  @EndTime = params['EndTime']
217
221
  @BeginIndex = params['BeginIndex']
218
222
  @EndIndex = params['EndIndex']
223
+ @Phoneme = params['Phoneme']
219
224
  end
220
225
  end
221
226
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tts
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.539
4
+ version: 3.0.540
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-28 00:00:00.000000000 Z
11
+ date: 2023-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common