tencentcloud-sdk-partners 3.0.617 → 3.0.618

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/v20180321/models.rb +36 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bae11dd738804552007ede38e382b14b59699f21
4
- data.tar.gz: 05bbef24c4ebf6138f27eae973bd7c54318e7f92
3
+ metadata.gz: 0bfb8a421fb3d8364e2db9551debb2586ce1033c
4
+ data.tar.gz: e85532d05341dfa4fc1ddc6cb681b1f184a33f23
5
5
  SHA512:
6
- metadata.gz: 09d5df60229a888cf055ba30bace8d255fd501abf69cb4e33665bf479e4953868aaf9af6348a0cf370f7bb30ba1feebd6ab7907286d9dfab32f4c74099dc8c59
7
- data.tar.gz: c36677b90ca0631479afde4288abd94f942e1606467439f863e4df578db4835b59a07c239b62cd5ce69c8502bef755ddae4fa1b9dbd3cf001d1f07c722e74add
6
+ metadata.gz: ac816e5769b02c2efd2970704eb1390b0a72ac2bdf55e9873eb8f9c0cfa1d7a5a08d6ed55915e4dadf3a7238e4adfdd8604442d90ddadb3bd20b8cf07df11838
7
+ data.tar.gz: 20992bc98b5410e2e5d0149cf9b9c882b38090cd51249470bc14c54b8f18da64edc2197d1d62bb1450fabd9c269496cce28288ee15b3e925ee206f34bc275f05
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.617
1
+ 3.0.618
@@ -307,10 +307,13 @@ module TencentCloud
307
307
  # @param ResourceIds: 资源id
308
308
  # 注意:此字段可能返回 null,表示取不到有效值。
309
309
  # @type ResourceIds: Array
310
+ # @param RefundMap: 退款单的原订单信息。当前仅 DescribeClientDealsByCache 接口会返回该字段
311
+ # 注意:此字段可能返回 null,表示取不到有效值。
312
+ # @type RefundMap: Array
310
313
 
311
- attr_accessor :DealId, :DealName, :GoodsCategoryId, :OwnerUin, :AppId, :GoodsNum, :GoodsPrice, :Creater, :CreatTime, :PayEndTime, :BillId, :Payer, :DealStatus, :Status, :GoodsName, :ClientRemark, :ActionType, :VoucherDecline, :BigDealId, :ClientType, :ProjectType, :SalesUin, :PayerMode, :ActivityId, :OverdueTime, :ProductInfo, :PaymentMethod, :UpdateTime, :ResourceIds
314
+ attr_accessor :DealId, :DealName, :GoodsCategoryId, :OwnerUin, :AppId, :GoodsNum, :GoodsPrice, :Creater, :CreatTime, :PayEndTime, :BillId, :Payer, :DealStatus, :Status, :GoodsName, :ClientRemark, :ActionType, :VoucherDecline, :BigDealId, :ClientType, :ProjectType, :SalesUin, :PayerMode, :ActivityId, :OverdueTime, :ProductInfo, :PaymentMethod, :UpdateTime, :ResourceIds, :RefundMap
312
315
 
313
- def initialize(dealid=nil, dealname=nil, goodscategoryid=nil, owneruin=nil, appid=nil, goodsnum=nil, goodsprice=nil, creater=nil, creattime=nil, payendtime=nil, billid=nil, payer=nil, dealstatus=nil, status=nil, goodsname=nil, clientremark=nil, actiontype=nil, voucherdecline=nil, bigdealid=nil, clienttype=nil, projecttype=nil, salesuin=nil, payermode=nil, activityid=nil, overduetime=nil, productinfo=nil, paymentmethod=nil, updatetime=nil, resourceids=nil)
316
+ def initialize(dealid=nil, dealname=nil, goodscategoryid=nil, owneruin=nil, appid=nil, goodsnum=nil, goodsprice=nil, creater=nil, creattime=nil, payendtime=nil, billid=nil, payer=nil, dealstatus=nil, status=nil, goodsname=nil, clientremark=nil, actiontype=nil, voucherdecline=nil, bigdealid=nil, clienttype=nil, projecttype=nil, salesuin=nil, payermode=nil, activityid=nil, overduetime=nil, productinfo=nil, paymentmethod=nil, updatetime=nil, resourceids=nil, refundmap=nil)
314
317
  @DealId = dealid
315
318
  @DealName = dealname
316
319
  @GoodsCategoryId = goodscategoryid
@@ -340,6 +343,7 @@ module TencentCloud
340
343
  @PaymentMethod = paymentmethod
341
344
  @UpdateTime = updatetime
342
345
  @ResourceIds = resourceids
346
+ @RefundMap = refundmap
343
347
  end
344
348
 
345
349
  def deserialize(params)
@@ -382,6 +386,14 @@ module TencentCloud
382
386
  @PaymentMethod = params['PaymentMethod']
383
387
  @UpdateTime = params['UpdateTime']
384
388
  @ResourceIds = params['ResourceIds']
389
+ unless params['RefundMap'].nil?
390
+ @RefundMap = []
391
+ params['RefundMap'].each do |i|
392
+ refundmap_tmp = RefundMap.new
393
+ refundmap_tmp.deserialize(i)
394
+ @RefundMap << refundmap_tmp
395
+ end
396
+ end
385
397
  end
386
398
  end
387
399
 
@@ -1594,6 +1606,28 @@ module TencentCloud
1594
1606
  end
1595
1607
  end
1596
1608
 
1609
+ # 退款单关联的原始订单信息
1610
+ class RefundMap < TencentCloud::Common::AbstractModel
1611
+ # @param DealName: 退款单关联的原始子订单号
1612
+ # 注意:此字段可能返回 null,表示取不到有效值。
1613
+ # @type DealName: String
1614
+ # @param RefundAmount: 退款金额,单位分
1615
+ # 注意:此字段可能返回 null,表示取不到有效值。
1616
+ # @type RefundAmount: Integer
1617
+
1618
+ attr_accessor :DealName, :RefundAmount
1619
+
1620
+ def initialize(dealname=nil, refundamount=nil)
1621
+ @DealName = dealname
1622
+ @RefundAmount = refundamount
1623
+ end
1624
+
1625
+ def deserialize(params)
1626
+ @DealName = params['DealName']
1627
+ @RefundAmount = params['RefundAmount']
1628
+ end
1629
+ end
1630
+
1597
1631
  # RemovePayRelationForClient请求参数结构体
1598
1632
  class RemovePayRelationForClientRequest < TencentCloud::Common::AbstractModel
1599
1633
  # @param ClientUin: 客户账号ID
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-partners
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.617
4
+ version: 3.0.618
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-07-20 00:00:00.000000000 Z
11
+ date: 2023-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common