tencentcloud-sdk-ame 1.0.265 → 1.0.266

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/v20190916/models.rb +10 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60e9092670bcf381621e0f12bfd1e22c9cd8c8b7
4
- data.tar.gz: dc8fd82bda5ce210bf7a2a3f0c98228c1afe5859
3
+ metadata.gz: bfb2524ea83dd621ebe40e0e3f09d8d842e29b2a
4
+ data.tar.gz: f5c0ff59f1e9bf07a61deb56335a8a4363d3d374
5
5
  SHA512:
6
- metadata.gz: d98a71b517f72003108bf3916453ab5f297911e8d77af090061f4d33d7480e3440a3e88824f8fccc2b262f35b9d593f5904b8f40ab7b61113c8356c98cc38755
7
- data.tar.gz: 0ef73c9a94cc6f2274142cf76928af05ac1b095b41de95ed950a355b4f881d490d5fc3800935dc52822b1b92c49904245ea37475a6cbfb5ac34c388673a934bd
6
+ metadata.gz: 4d6c675817f992c804c4bb361ea5ebea1b2ebb63520b09fe10318b6d49d86d9165e5e736504b967cd28d12300f500f81503db23507c7f975548187eb0ffa255b
7
+ data.tar.gz: 7a73c14d617de7b3befd978f3e18d54e826635443dd81ce312c36e80d631d9d2896a43020a1f9a00aef9c0253961dc8861f7e60fb22a7f1d772e08d2158d8149
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.265
1
+ 1.0.266
@@ -2525,25 +2525,32 @@ module TencentCloud
2525
2525
  # @param Type: 变更类型,取值有:
2526
2526
  # <li>Add:添加</li>
2527
2527
  # <li>Delete:删除</li>
2528
+ # <li>ClearList:清空歌曲列表</li>
2529
+ # <li>Move:移动歌曲</li>
2528
2530
  # @type Type: String
2529
2531
  # @param Index: 歌单索引位置,
2530
2532
  # 当 Type 取 Add 时,-1表示添加在列表最后位置,大于-1表示要添加的位置;
2531
- # 当 Type 取 Delete 时,表示要删除的位置。
2533
+ # 当 Type 取 Delete 时,表示待删除歌曲的位置;
2534
+ # 当 Type 取 Move 时,表示待调整歌曲的位置。
2532
2535
  # @type Index: Integer
2536
+ # @param ChangedIndex: 当 Type 取 Move 时,必填,表示移动歌曲的目标位置。
2537
+ # @type ChangedIndex: Integer
2533
2538
  # @param MusicIds: 歌曲 ID 列表,当 Type 取 Add 时,必填。
2534
2539
  # @type MusicIds: Array
2535
2540
 
2536
- attr_accessor :Type, :Index, :MusicIds
2541
+ attr_accessor :Type, :Index, :ChangedIndex, :MusicIds
2537
2542
 
2538
- def initialize(type=nil, index=nil, musicids=nil)
2543
+ def initialize(type=nil, index=nil, changedindex=nil, musicids=nil)
2539
2544
  @Type = type
2540
2545
  @Index = index
2546
+ @ChangedIndex = changedindex
2541
2547
  @MusicIds = musicids
2542
2548
  end
2543
2549
 
2544
2550
  def deserialize(params)
2545
2551
  @Type = params['Type']
2546
2552
  @Index = params['Index']
2553
+ @ChangedIndex = params['ChangedIndex']
2547
2554
  @MusicIds = params['MusicIds']
2548
2555
  end
2549
2556
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ame
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.265
4
+ version: 1.0.266
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-02-25 00:00:00.000000000 Z
11
+ date: 2022-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common