tencentcloud-sdk-iotexplorer 3.0.852 → 3.0.854

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190423/models.rb +41 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2ed4c49f370ce4376776dbea7b512e1a235d0f49
4
- data.tar.gz: cb35706b571eb4fda06ce3f858cc2568c2dbcd85
3
+ metadata.gz: 5ab6f4e7e4178090fb92872f28f4dc55e18054ce
4
+ data.tar.gz: 25bdce38640fb594747349f2ec1265aeb45101d2
5
5
  SHA512:
6
- metadata.gz: 6a659c46a48ebc8349c907398050a73e2d28e9ff647e0011ea1f33758de5490705cc4b12d7ac98e6137496f3be588ad820f4a2724dc994b418400af9175c32f9
7
- data.tar.gz: de6d25bb541995e023891caa5dcb3108119b63da079ba300dbfc3fa9393b241b7266c557fd051284ab3c7d65bd8a03893c79fec6b7ba3d31614ede7279bdc3fa
6
+ metadata.gz: 418cbe75ca95d3af6206fdcd2262d042b9210d2ea3936798a5426bac951e9ff6b9a3fe8a796bedf5ec8c569c6c1ad6738c60e7afe589cf253a42fe2362eeb1be
7
+ data.tar.gz: aef01ff66cdb351a20027a951fca7d7dccf3b8f8d63b4426534222cd1b38d705ef829de3e60cc9b8bbd92cc3166f02137087be5902c077b92584479c5920685e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.852
1
+ 3.0.854
@@ -6318,14 +6318,18 @@ module TencentCloud
6318
6318
  # @type TWeCallPkgList: Array
6319
6319
  # @param Total: 总数
6320
6320
  # @type Total: Integer
6321
+ # @param TWeCallCategoryPkgList: 分类统计
6322
+ # 注意:此字段可能返回 null,表示取不到有效值。
6323
+ # @type TWeCallCategoryPkgList: Array
6321
6324
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6322
6325
  # @type RequestId: String
6323
6326
 
6324
- attr_accessor :TWeCallPkgList, :Total, :RequestId
6327
+ attr_accessor :TWeCallPkgList, :Total, :TWeCallCategoryPkgList, :RequestId
6325
6328
 
6326
- def initialize(twecallpkglist=nil, total=nil, requestid=nil)
6329
+ def initialize(twecallpkglist=nil, total=nil, twecallcategorypkglist=nil, requestid=nil)
6327
6330
  @TWeCallPkgList = twecallpkglist
6328
6331
  @Total = total
6332
+ @TWeCallCategoryPkgList = twecallcategorypkglist
6329
6333
  @RequestId = requestid
6330
6334
  end
6331
6335
 
@@ -6339,6 +6343,14 @@ module TencentCloud
6339
6343
  end
6340
6344
  end
6341
6345
  @Total = params['Total']
6346
+ unless params['TWeCallCategoryPkgList'].nil?
6347
+ @TWeCallCategoryPkgList = []
6348
+ params['TWeCallCategoryPkgList'].each do |i|
6349
+ twecallcategorypkginfo_tmp = TWeCallCategoryPkgInfo.new
6350
+ twecallcategorypkginfo_tmp.deserialize(i)
6351
+ @TWeCallCategoryPkgList << twecallcategorypkginfo_tmp
6352
+ end
6353
+ end
6342
6354
  @RequestId = params['RequestId']
6343
6355
  end
6344
6356
  end
@@ -8743,6 +8755,33 @@ module TencentCloud
8743
8755
  end
8744
8756
  end
8745
8757
 
8758
+ # TWeCall分类统计数据
8759
+ class TWeCallCategoryPkgInfo < TencentCloud::Common::AbstractModel
8760
+ # @param PkgType: 类型
8761
+ # 注意:此字段可能返回 null,表示取不到有效值。
8762
+ # @type PkgType: Integer
8763
+ # @param All: 总数
8764
+ # 注意:此字段可能返回 null,表示取不到有效值。
8765
+ # @type All: Integer
8766
+ # @param Used: 已使用数
8767
+ # 注意:此字段可能返回 null,表示取不到有效值。
8768
+ # @type Used: Integer
8769
+
8770
+ attr_accessor :PkgType, :All, :Used
8771
+
8772
+ def initialize(pkgtype=nil, all=nil, used=nil)
8773
+ @PkgType = pkgtype
8774
+ @All = all
8775
+ @Used = used
8776
+ end
8777
+
8778
+ def deserialize(params)
8779
+ @PkgType = params['PkgType']
8780
+ @All = params['All']
8781
+ @Used = params['Used']
8782
+ end
8783
+ end
8784
+
8746
8785
  # TWeCall信息
8747
8786
  class TWeCallInfo < TencentCloud::Common::AbstractModel
8748
8787
  # @param ModelId: 小程序ID
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-iotexplorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.852
4
+ version: 3.0.854
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-26 00:00:00.000000000 Z
11
+ date: 2024-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common