tencentcloud-sdk-yinsuda 3.0.438 → 3.0.439
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/v20220527/models.rb +17 -4
- 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: 70336f741226dc1b2c4038957c9c8372f146e97f
|
4
|
+
data.tar.gz: 04fe683e500d31b7a738ab81a1f0a8bd8badca05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e543538b7a44abfdd8bde2e263488189034af12a1523661426a6fa2246d9701d619c1224a290b041aa7716b78a857dc27b3bd6a62bbed980eeca91fc4d0ac4da
|
7
|
+
data.tar.gz: a2a012f43b73e0bd4242bb0471a4efe9f9e125d6833d5623dee363e3ea14c5611a7418618a5e287d32d29c650f2ffc94c8796bb9d579b68a1a59c677975d6034
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.439
|
data/lib/v20220527/models.rb
CHANGED
@@ -371,20 +371,29 @@ module TencentCloud
|
|
371
371
|
# @param Types: 类型列表,取值有:
|
372
372
|
# <li>OfficialRec:官方推荐;</li>
|
373
373
|
# <li>Customize:自定义。</li>
|
374
|
+
# 默认值为 OfficialRec。
|
374
375
|
# @type Types: Array
|
376
|
+
# @param Offset: 分页返回的起始偏移量,默认值:0。将返回第 Offset 到第 Offset+Limit-1 条。
|
377
|
+
# @type Offset: Integer
|
378
|
+
# @param Limit: 分页返回的记录条数,默认值:20,最大值:50。
|
379
|
+
# @type Limit: Integer
|
375
380
|
|
376
|
-
attr_accessor :AppName, :UserId, :Types
|
381
|
+
attr_accessor :AppName, :UserId, :Types, :Offset, :Limit
|
377
382
|
|
378
|
-
def initialize(appname=nil, userid=nil, types=nil)
|
383
|
+
def initialize(appname=nil, userid=nil, types=nil, offset=nil, limit=nil)
|
379
384
|
@AppName = appname
|
380
385
|
@UserId = userid
|
381
386
|
@Types = types
|
387
|
+
@Offset = offset
|
388
|
+
@Limit = limit
|
382
389
|
end
|
383
390
|
|
384
391
|
def deserialize(params)
|
385
392
|
@AppName = params['AppName']
|
386
393
|
@UserId = params['UserId']
|
387
394
|
@Types = params['Types']
|
395
|
+
@Offset = params['Offset']
|
396
|
+
@Limit = params['Limit']
|
388
397
|
end
|
389
398
|
end
|
390
399
|
|
@@ -392,13 +401,16 @@ module TencentCloud
|
|
392
401
|
class DescribeKTVPlaylistsResponse < TencentCloud::Common::AbstractModel
|
393
402
|
# @param PlaylistBaseInfoSet: 歌单基础信息。
|
394
403
|
# @type PlaylistBaseInfoSet: Array
|
404
|
+
# @param TotalCount: 歌单总数。
|
405
|
+
# @type TotalCount: Integer
|
395
406
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
396
407
|
# @type RequestId: String
|
397
408
|
|
398
|
-
attr_accessor :PlaylistBaseInfoSet, :RequestId
|
409
|
+
attr_accessor :PlaylistBaseInfoSet, :TotalCount, :RequestId
|
399
410
|
|
400
|
-
def initialize(playlistbaseinfoset=nil, requestid=nil)
|
411
|
+
def initialize(playlistbaseinfoset=nil, totalcount=nil, requestid=nil)
|
401
412
|
@PlaylistBaseInfoSet = playlistbaseinfoset
|
413
|
+
@TotalCount = totalcount
|
402
414
|
@RequestId = requestid
|
403
415
|
end
|
404
416
|
|
@@ -411,6 +423,7 @@ module TencentCloud
|
|
411
423
|
@PlaylistBaseInfoSet << ktvplaylistbaseinfo_tmp
|
412
424
|
end
|
413
425
|
end
|
426
|
+
@TotalCount = params['TotalCount']
|
414
427
|
@RequestId = params['RequestId']
|
415
428
|
end
|
416
429
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-yinsuda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.439
|
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-10-
|
11
|
+
date: 2022-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|