tencentcloud-sdk-iotexplorer 3.0.853 → 3.0.855

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: 9b9f86506bcaf158be50b165f5e52c630ba597f1
4
- data.tar.gz: 9018fafa45f8b709c7ab2b6427e44d9736603015
3
+ metadata.gz: 09d31639d7e4da6bcd36165b10f9619eabe001ec
4
+ data.tar.gz: 144c20a84e7b5246462522109a64113a80a47d85
5
5
  SHA512:
6
- metadata.gz: 3b076d00d0ee21a53f422ce53112c34fcdefea2c94df5535411d0ade1ab57baa31b5d7fff12e4a0553b81d717112ce9e5fd9b529ec54146acb08d1a72d22f475
7
- data.tar.gz: c0bbbbbf0dc797bbba7c65621beb551965b468e7531b32f9a83ca921f11ea9c66b417ef983d9501783e5f9090c5e83458b2382bdf1ded6eaa3dab61e1b32b8b9
6
+ metadata.gz: 36718c2b16078b12ff47fc5965f9d4904c7cea3f1da5bed92f798dcb0ace36b8672a9d7b14b507d9b28d9aba1a3d0219dc7959dbf32bf8d6dc3ecda86f085b82
7
+ data.tar.gz: cf9d1a9e94767c6de9cb5f3e292658ef5d28bd9d5562dfdcb306f8c5228f43f3d6ffa078ecba482df44fe00875f4c24ef99b22a5c8799e44e0f19e29c19229ab
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.853
1
+ 3.0.855
@@ -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.853
4
+ version: 3.0.855
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-27 00:00:00.000000000 Z
11
+ date: 2024-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common