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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220527/models.rb +17 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f6b9f2995a9a40509036f95347326df72ddc1ce
4
- data.tar.gz: 5da630db0800afa32570ebefefd18df9da15812c
3
+ metadata.gz: 70336f741226dc1b2c4038957c9c8372f146e97f
4
+ data.tar.gz: 04fe683e500d31b7a738ab81a1f0a8bd8badca05
5
5
  SHA512:
6
- metadata.gz: 46ded4d28afa46ebea047f34bdafccc3dbb697f04f4baebd6f3638ca067c29eb7501a44b623b7116efb909fe713851ae463bd7644f3cd0cfd20c2e7b8a7fe3a9
7
- data.tar.gz: 104848a72e5fb119ef95692eb762eef5e407bd08cd326d4189a75559133c91a0ddffdae2a2d2c5f2037f8d208f07bcc8f4300bf0ee7f89335ad06e8ad64d00e4
6
+ metadata.gz: e543538b7a44abfdd8bde2e263488189034af12a1523661426a6fa2246d9701d619c1224a290b041aa7716b78a857dc27b3bd6a62bbed980eeca91fc4d0ac4da
7
+ data.tar.gz: a2a012f43b73e0bd4242bb0471a4efe9f9e125d6833d5623dee363e3ea14c5611a7418618a5e287d32d29c650f2ffc94c8796bb9d579b68a1a59c677975d6034
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.438
1
+ 3.0.439
@@ -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.438
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-27 00:00:00.000000000 Z
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