tencentcloud-sdk-cpdp 3.0.427 → 3.0.428

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/v20190820/models.rb +29 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c121918b337766d904fe3b4b63b5aaafc1ed0077
4
- data.tar.gz: 363650d95928e5a7466d3208c1f54786a8517ed2
3
+ metadata.gz: ee7629329959db8be8e3156fa68b4327c19c94ff
4
+ data.tar.gz: 7bd3172db2318ef18aaa2e768ce1d9b574cf25d5
5
5
  SHA512:
6
- metadata.gz: c5b13f68336f80121232421a067e35595d889ae59828d7ee015d257d36eb65e87a30adadc410201602af67d0d94825a289d3cb030125eb4679d4b2177103f370
7
- data.tar.gz: c8ac9a650b04748c754d549f9d6f93fae66d4f93587251d42ca0d734625c79acba813ee3f3d6e139babaa044a9c4244d7b1580e123bfa507f279fa401377cca4
6
+ metadata.gz: 7c35055bab4a8652bbd3f576beb0d2080d8e76e3b3b83117a195bf9d2fa544b799880a1811d554bb2bbce81436848904cf0addb7e55a3793030644192fd655c9
7
+ data.tar.gz: 849bd0d22bdba3a46796c7eafd6413e0b6c7a81a2e7d439b03ff3e17f628dcf9bc8de2af16bbd00fbe3e1d95bbfaef17d9ed677d2e081cfe30290e799ccf5f31
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.427
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.427
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-13 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