tencentcloud-sdk-cpdp 3.0.426 → 3.0.428

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/v20190820/models.rb +29 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d425222f1dbc8b50edf426ec96352f7c25fa16a
4
- data.tar.gz: 4e9fc5d77cf38569a5d5f79599060a2150065fcd
3
+ metadata.gz: ee7629329959db8be8e3156fa68b4327c19c94ff
4
+ data.tar.gz: 7bd3172db2318ef18aaa2e768ce1d9b574cf25d5
5
5
  SHA512:
6
- metadata.gz: 9eddee90d6f867f66a6aaf1d373f85462eacd7309366960edcffaf483e4c478cc62254218c98fc567c10c9a8466192a39295240c43bbc372bb6cc983b0094cd9
7
- data.tar.gz: 941e26562b22596e815ea2698b8d3e564b9d14885c87043f4d71ca790cd4e6af976f25dafaed3a61d336b146ae78919c577ae39ecbeda0eb68dbb3c8411b0a9d
6
+ metadata.gz: 7c35055bab4a8652bbd3f576beb0d2080d8e76e3b3b83117a195bf9d2fa544b799880a1811d554bb2bbce81436848904cf0addb7e55a3793030644192fd655c9
7
+ data.tar.gz: 849bd0d22bdba3a46796c7eafd6413e0b6c7a81a2e7d439b03ff3e17f628dcf9bc8de2af16bbd00fbe3e1d95bbfaef17d9ed677d2e081cfe30290e799ccf5f31
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.426
1
+ 3.0.428
@@ -7031,14 +7031,26 @@ module TencentCloud
7031
7031
  # @type RedirectInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankRechargeRedirectInfo`
7032
7032
  # @param OutOrderId: 外部商户订单号,只能是数字、大小写字母,且在同一个接入平台下唯一。
7033
7033
  # @type OutOrderId: String
7034
+ # @param DealStatus: 充值状态
7035
+ # 注意:此字段可能返回 null,表示取不到有效值。
7036
+ # @type DealStatus: String
7037
+ # @param DealMessage: 充值返回描述
7038
+ # 注意:此字段可能返回 null,表示取不到有效值。
7039
+ # @type DealMessage: String
7040
+ # @param PcWebUrl: PC web端跳转链接
7041
+ # 注意:此字段可能返回 null,表示取不到有效值。
7042
+ # @type PcWebUrl: String
7034
7043
 
7035
- attr_accessor :ChannelOrderId, :ThirdPayOrderId, :RedirectInfo, :OutOrderId
7044
+ attr_accessor :ChannelOrderId, :ThirdPayOrderId, :RedirectInfo, :OutOrderId, :DealStatus, :DealMessage, :PcWebUrl
7036
7045
 
7037
- def initialize(channelorderid=nil, thirdpayorderid=nil, redirectinfo=nil, outorderid=nil)
7046
+ def initialize(channelorderid=nil, thirdpayorderid=nil, redirectinfo=nil, outorderid=nil, dealstatus=nil, dealmessage=nil, pcweburl=nil)
7038
7047
  @ChannelOrderId = channelorderid
7039
7048
  @ThirdPayOrderId = thirdpayorderid
7040
7049
  @RedirectInfo = redirectinfo
7041
7050
  @OutOrderId = outorderid
7051
+ @DealStatus = dealstatus
7052
+ @DealMessage = dealmessage
7053
+ @PcWebUrl = pcweburl
7042
7054
  end
7043
7055
 
7044
7056
  def deserialize(params)
@@ -7049,6 +7061,9 @@ module TencentCloud
7049
7061
  @RedirectInfo.deserialize(params['RedirectInfo'])
7050
7062
  end
7051
7063
  @OutOrderId = params['OutOrderId']
7064
+ @DealStatus = params['DealStatus']
7065
+ @DealMessage = params['DealMessage']
7066
+ @PcWebUrl = params['PcWebUrl']
7052
7067
  end
7053
7068
  end
7054
7069
 
@@ -8385,15 +8400,25 @@ module TencentCloud
8385
8400
  class CreateSinglePaymentData < TencentCloud::Common::AbstractModel
8386
8401
  # @param TradeSerialNo: 平台交易流水号,唯一
8387
8402
  # @type TradeSerialNo: String
8403
+ # @param AgentId: 代理商ID
8404
+ # 注意:此字段可能返回 null,表示取不到有效值。
8405
+ # @type AgentId: String
8406
+ # @param AgentName: 代理商名称
8407
+ # 注意:此字段可能返回 null,表示取不到有效值。
8408
+ # @type AgentName: String
8388
8409
 
8389
- attr_accessor :TradeSerialNo
8410
+ attr_accessor :TradeSerialNo, :AgentId, :AgentName
8390
8411
 
8391
- def initialize(tradeserialno=nil)
8412
+ def initialize(tradeserialno=nil, agentid=nil, agentname=nil)
8392
8413
  @TradeSerialNo = tradeserialno
8414
+ @AgentId = agentid
8415
+ @AgentName = agentname
8393
8416
  end
8394
8417
 
8395
8418
  def deserialize(params)
8396
8419
  @TradeSerialNo = params['TradeSerialNo']
8420
+ @AgentId = params['AgentId']
8421
+ @AgentName = params['AgentName']
8397
8422
  end
8398
8423
  end
8399
8424
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cpdp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.426
4
+ version: 3.0.428
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-12 00:00:00.000000000 Z
11
+ date: 2022-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common