tencentcloud-sdk-cpdp 1.0.280 → 1.0.283

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 +32 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e09e36faa2e3066e5429423e79b36fc5c95c97f6
4
- data.tar.gz: 63c1836f66efdd8f902c9a11c1c3a18de642a15b
3
+ metadata.gz: b22a8a1ef1aecbc7ced8d45d1cb344c8caa2943d
4
+ data.tar.gz: a5adf1ef1bd6d6124f24735a77c63a2e962bd526
5
5
  SHA512:
6
- metadata.gz: 9497c60d672d5043b8486856abc54247fa78f2d55c66aedb461284e0e164770ed668e98af5eb862c045bc89877b56967c6e60e3bf8cbbb08b05530f3ec673ccc
7
- data.tar.gz: 500a882b7e54de1fa8c9d87f22f264a0907b6e22a7813ede00db1ea7b7168c7eb5e69926a8b555a70ab43e709a6bac5ec3613f727018cfb2816b4b9a1a09d9f7
6
+ metadata.gz: 108f77603b464f4c4a31f3f839599fc4eade3f4ce5746bfa73ee629c96f30b7caf042b995d949acfc1e0ede7450aaeaedc5d243b560332529093dcd58745ead5
7
+ data.tar.gz: 3656d0f49567c003a4001cc8cda3091d1a23fb10a1f5c5a42aab29384526eeca53cf70a430684fddd56ae143f807701e204494cd70d5c82f2d40c0119757d288
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.280
1
+ 1.0.283
@@ -8196,6 +8196,27 @@ module TencentCloud
8196
8196
  end
8197
8197
  end
8198
8198
 
8199
+ # 银行复核指引。银行侧返回网银授权指引链接,一般PC网银,手机网银链接
8200
+ class OpenBankApprovalGuideInfo < TencentCloud::Common::AbstractModel
8201
+ # @param PcGuideUrl: PC网银指引
8202
+ # @type PcGuideUrl: String
8203
+ # @param MobileGuideUrl: 手机网银指引
8204
+ # 注意:此字段可能返回 null,表示取不到有效值。
8205
+ # @type MobileGuideUrl: String
8206
+
8207
+ attr_accessor :PcGuideUrl, :MobileGuideUrl
8208
+
8209
+ def initialize(pcguideurl=nil, mobileguideurl=nil)
8210
+ @PcGuideUrl = pcguideurl
8211
+ @MobileGuideUrl = mobileguideurl
8212
+ end
8213
+
8214
+ def deserialize(params)
8215
+ @PcGuideUrl = params['PcGuideUrl']
8216
+ @MobileGuideUrl = params['MobileGuideUrl']
8217
+ end
8218
+ end
8219
+
8199
8220
  # 云企付-商品信息
8200
8221
  class OpenBankGoodsInfo < TencentCloud::Common::AbstractModel
8201
8222
  # @param GoodsName: 商品名称,默认值“商品支付”
@@ -13142,13 +13163,16 @@ module TencentCloud
13142
13163
  # 渠道为TENPAY,付款方式为EBANK_PAYMENT时返回
13143
13164
  # 注意:此字段可能返回 null,表示取不到有效值。
13144
13165
  # @type RedirectInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankRedirectInfo`
13145
- # @param ExternalReturnData: 第三方渠道返回信息,见渠道特殊说明
13166
+ # @param ExternalReturnData: 第三方渠道返回信息,见渠道特殊说明,详情见附录-复杂类型。
13146
13167
  # 注意:此字段可能返回 null,表示取不到有效值。
13147
13168
  # @type ExternalReturnData: String
13169
+ # @param BankApprovalGuideInfo: 银行复核指引。当TENPAY下OPENBANT_PAYMENT时,下单受理成功是返回。
13170
+ # 注意:此字段可能返回 null,表示取不到有效值。
13171
+ # @type BankApprovalGuideInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankApprovalGuideInfo`
13148
13172
 
13149
- attr_accessor :ChannelMerchantId, :OutOrderId, :ChannelOrderId, :ThirdPayOrderId, :OrderStatus, :ChannelName, :PaymentMethod, :TotalAmount, :PayAmount, :FailReason, :Attachment, :RedirectInfo, :ExternalReturnData
13173
+ attr_accessor :ChannelMerchantId, :OutOrderId, :ChannelOrderId, :ThirdPayOrderId, :OrderStatus, :ChannelName, :PaymentMethod, :TotalAmount, :PayAmount, :FailReason, :Attachment, :RedirectInfo, :ExternalReturnData, :BankApprovalGuideInfo
13150
13174
 
13151
- def initialize(channelmerchantid=nil, outorderid=nil, channelorderid=nil, thirdpayorderid=nil, orderstatus=nil, channelname=nil, paymentmethod=nil, totalamount=nil, payamount=nil, failreason=nil, attachment=nil, redirectinfo=nil, externalreturndata=nil)
13175
+ def initialize(channelmerchantid=nil, outorderid=nil, channelorderid=nil, thirdpayorderid=nil, orderstatus=nil, channelname=nil, paymentmethod=nil, totalamount=nil, payamount=nil, failreason=nil, attachment=nil, redirectinfo=nil, externalreturndata=nil, bankapprovalguideinfo=nil)
13152
13176
  @ChannelMerchantId = channelmerchantid
13153
13177
  @OutOrderId = outorderid
13154
13178
  @ChannelOrderId = channelorderid
@@ -13162,6 +13186,7 @@ module TencentCloud
13162
13186
  @Attachment = attachment
13163
13187
  @RedirectInfo = redirectinfo
13164
13188
  @ExternalReturnData = externalreturndata
13189
+ @BankApprovalGuideInfo = bankapprovalguideinfo
13165
13190
  end
13166
13191
 
13167
13192
  def deserialize(params)
@@ -13181,6 +13206,10 @@ module TencentCloud
13181
13206
  @RedirectInfo.deserialize(params['RedirectInfo'])
13182
13207
  end
13183
13208
  @ExternalReturnData = params['ExternalReturnData']
13209
+ unless params['BankApprovalGuideInfo'].nil?
13210
+ @BankApprovalGuideInfo = OpenBankApprovalGuideInfo.new
13211
+ @BankApprovalGuideInfo.deserialize(params['BankApprovalGuideInfo'])
13212
+ end
13184
13213
  end
13185
13214
  end
13186
13215
 
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: 1.0.280
4
+ version: 1.0.283
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-03-21 00:00:00.000000000 Z
11
+ date: 2022-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common