tencentcloud-sdk-trp 3.0.533 → 3.0.535

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0bf7a186532acf3ecd14680cc962df3be051d1c5
4
- data.tar.gz: 6063775080e38e6282a69f066df9305edb129484
3
+ metadata.gz: 05cab3165d8304621bcc3eba84dbbc81adc04d16
4
+ data.tar.gz: 97826ddf722837fc325099892519f5702af19ded
5
5
  SHA512:
6
- metadata.gz: 90bd3ea14161f7ee36b76d69ee54062d3ae445136049f118bc7ab2bea15e960ce3fe9efe5c488ec0c95b499b3c829ba91b0b86b12fd935cb665afe83dfd550f9
7
- data.tar.gz: 0b86b3b4fe9708bcc1435dba3e531adbff05a631adf03ba840312e78cfeee8ee33716a5fe36aa48b74547a85e8d320d1856c61d60dcffff6b3174d876742dfee
6
+ metadata.gz: 3b7ec06fbeccdce363e50881b29228c1feeecea001324af23ff2d60fd7b3d3f3224ecd51fe5e24ee86f08be5b94120324dc20711a773ab7be5ab81e0050b0076
7
+ data.tar.gz: 2bb890d2852a292d65e91d36627be6ead959a9b3e77ee691d641af4093ef6184bcd0f7c3db13d7364fa268092fe8bdb3731e667ffdcc21b87aa65fb6ccb9721c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.533
1
+ 3.0.535
@@ -749,7 +749,8 @@ module TencentCloud
749
749
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
750
750
  end
751
751
 
752
- # 查询某个批次被扫码的统计列表,没有被扫过的不会返回
752
+ # 查询扫码的统计信息列表,支持按照商户ID,产品ID,批次ID,安心码筛选,筛选条件至少有一个
753
+ # 没有被扫过的不会返回
753
754
 
754
755
  # @param request: Request instance for DescribeScanStats.
755
756
  # @type request: :class:`Tencentcloud::trp::V20210515::DescribeScanStatsRequest`
@@ -2105,29 +2105,37 @@ module TencentCloud
2105
2105
 
2106
2106
  # DescribeScanStats请求参数结构体
2107
2107
  class DescribeScanStatsRequest < TencentCloud::Common::AbstractModel
2108
- # @param BatchId: 批次ID
2109
- # @type BatchId: String
2110
2108
  # @param CorpId: 企业ID
2111
2109
  # @type CorpId: Integer
2112
2110
  # @param PageSize: 分页数量
2113
2111
  # @type PageSize: Integer
2114
2112
  # @param PageNumber: 当前分页
2115
2113
  # @type PageNumber: Integer
2114
+ # @param MerchantId: 商户ID
2115
+ # @type MerchantId: String
2116
+ # @param ProductId: 产品ID
2117
+ # @type ProductId: String
2118
+ # @param BatchId: 批次ID
2119
+ # @type BatchId: String
2116
2120
 
2117
- attr_accessor :BatchId, :CorpId, :PageSize, :PageNumber
2121
+ attr_accessor :CorpId, :PageSize, :PageNumber, :MerchantId, :ProductId, :BatchId
2118
2122
 
2119
- def initialize(batchid=nil, corpid=nil, pagesize=nil, pagenumber=nil)
2120
- @BatchId = batchid
2123
+ def initialize(corpid=nil, pagesize=nil, pagenumber=nil, merchantid=nil, productid=nil, batchid=nil)
2121
2124
  @CorpId = corpid
2122
2125
  @PageSize = pagesize
2123
2126
  @PageNumber = pagenumber
2127
+ @MerchantId = merchantid
2128
+ @ProductId = productid
2129
+ @BatchId = batchid
2124
2130
  end
2125
2131
 
2126
2132
  def deserialize(params)
2127
- @BatchId = params['BatchId']
2128
2133
  @CorpId = params['CorpId']
2129
2134
  @PageSize = params['PageSize']
2130
2135
  @PageNumber = params['PageNumber']
2136
+ @MerchantId = params['MerchantId']
2137
+ @ProductId = params['ProductId']
2138
+ @BatchId = params['BatchId']
2131
2139
  end
2132
2140
  end
2133
2141
 
@@ -3332,10 +3340,14 @@ module TencentCloud
3332
3340
  # @type CreateTime: String
3333
3341
  # @param UpdateTime: 更新时间
3334
3342
  # @type UpdateTime: String
3343
+ # @param MerchantName: 商户名称
3344
+ # @type MerchantName: String
3345
+ # @param ProductName: 产品名称
3346
+ # @type ProductName: String
3335
3347
 
3336
- attr_accessor :Code, :CorpId, :MerchantId, :ProductId, :BatchId, :Pv, :Uv, :CreateTime, :UpdateTime
3348
+ attr_accessor :Code, :CorpId, :MerchantId, :ProductId, :BatchId, :Pv, :Uv, :CreateTime, :UpdateTime, :MerchantName, :ProductName
3337
3349
 
3338
- def initialize(code=nil, corpid=nil, merchantid=nil, productid=nil, batchid=nil, pv=nil, uv=nil, createtime=nil, updatetime=nil)
3350
+ def initialize(code=nil, corpid=nil, merchantid=nil, productid=nil, batchid=nil, pv=nil, uv=nil, createtime=nil, updatetime=nil, merchantname=nil, productname=nil)
3339
3351
  @Code = code
3340
3352
  @CorpId = corpid
3341
3353
  @MerchantId = merchantid
@@ -3345,6 +3357,8 @@ module TencentCloud
3345
3357
  @Uv = uv
3346
3358
  @CreateTime = createtime
3347
3359
  @UpdateTime = updatetime
3360
+ @MerchantName = merchantname
3361
+ @ProductName = productname
3348
3362
  end
3349
3363
 
3350
3364
  def deserialize(params)
@@ -3357,6 +3371,8 @@ module TencentCloud
3357
3371
  @Uv = params['Uv']
3358
3372
  @CreateTime = params['CreateTime']
3359
3373
  @UpdateTime = params['UpdateTime']
3374
+ @MerchantName = params['MerchantName']
3375
+ @ProductName = params['ProductName']
3360
3376
  end
3361
3377
  end
3362
3378
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-trp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.533
4
+ version: 3.0.535
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-20 00:00:00.000000000 Z
11
+ date: 2023-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common