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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190916/models.rb +10 -3
- 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: bfb2524ea83dd621ebe40e0e3f09d8d842e29b2a
|
4
|
+
data.tar.gz: f5c0ff59f1e9bf07a61deb56335a8a4363d3d374
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d6c675817f992c804c4bb361ea5ebea1b2ebb63520b09fe10318b6d49d86d9165e5e736504b967cd28d12300f500f81503db23507c7f975548187eb0ffa255b
|
7
|
+
data.tar.gz: 7a73c14d617de7b3befd978f3e18d54e826635443dd81ce312c36e80d631d9d2896a43020a1f9a00aef9c0253961dc8861f7e60fb22a7f1d772e08d2158d8149
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.266
|
data/lib/v20190916/models.rb
CHANGED
@@ -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.
|
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-
|
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
|