tencentcloud-sdk-cpdp 1.0.351 → 1.0.354

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2bd1e337835be1e5897e7dd3a16a08244ae32cb
4
- data.tar.gz: f92f7a987597b81c4280609dacaa7f991adcffd3
3
+ metadata.gz: 0669656d887b4c9bb8f213ebaed1e699e0d2bebe
4
+ data.tar.gz: 2503d534a4078952de9257503ec257a3858e2932
5
5
  SHA512:
6
- metadata.gz: 48ea968591e8c5c39c7d02d1886998819462122ff78886630181ca2e47564295037d7ab1d293e2e296395d48102b32ada8f7d2cae126903199ab6a85a5599f44
7
- data.tar.gz: 50e08ce3d8f03e818c14126274f132f23fb1ba85213975acb233a98bd129d64ab6fa59ee5a9d7b10aa9f421cc6ff28d65addcb7dbdc4f22a53c2532c5f0761b9
6
+ metadata.gz: e7718ef3303de542e18dd0be473cb081485d856e3489b1c994923de0ddb5d274b602b4c5b45ecf4e61480e97c4be39b7074c6996ecf2c89c2555d9c1be2cf07c
7
+ data.tar.gz: 396deb0c46a6ee868dbd6c21e79521ed371b497f18165659c6a2e4130a8376e1d385ebff5047840fa3b754a89cb96768fc49d4f0a85ad5103e2a0b06f48866d9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.351
1
+ 1.0.354
@@ -1069,7 +1069,7 @@ module TencentCloud
1069
1069
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1070
1070
  end
1071
1071
 
1072
- # 云企付-创建支付订单
1072
+ # 云企付-创建支付订单。支持B2B网关支付,B2C转账下单。
1073
1073
 
1074
1074
  # @param request: Request instance for CreateOpenBankPaymentOrder.
1075
1075
  # @type request: :class:`Tencentcloud::cpdp::V20190820::CreateOpenBankPaymentOrderRequest`
@@ -1165,6 +1165,30 @@ module TencentCloud
1165
1165
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1166
1166
  end
1167
1167
 
1168
+ # 云企付-创建核销申请,适用于针对支付订单维度的确认收货,解冻等业务场景。目前支持的渠道有TENPAY下的EBANK_PAYMENT付款方式创建支付订单时,选择担保支付下单的订单进行解冻。
1169
+
1170
+ # @param request: Request instance for CreateOpenBankVerificationOrder.
1171
+ # @type request: :class:`Tencentcloud::cpdp::V20190820::CreateOpenBankVerificationOrderRequest`
1172
+ # @rtype: :class:`Tencentcloud::cpdp::V20190820::CreateOpenBankVerificationOrderResponse`
1173
+ def CreateOpenBankVerificationOrder(request)
1174
+ body = send_request('CreateOpenBankVerificationOrder', request.serialize)
1175
+ response = JSON.parse(body)
1176
+ if response['Response'].key?('Error') == false
1177
+ model = CreateOpenBankVerificationOrderResponse.new
1178
+ model.deserialize(response['Response'])
1179
+ model
1180
+ else
1181
+ code = response['Response']['Error']['Code']
1182
+ message = response['Response']['Error']['Message']
1183
+ reqid = response['Response']['RequestId']
1184
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1185
+ end
1186
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1187
+ raise e
1188
+ rescue StandardError => e
1189
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1190
+ end
1191
+
1168
1192
  # 云鉴-消费订单发起的接口
1169
1193
 
1170
1194
  # @param request: Request instance for CreateOrder.
@@ -3736,6 +3760,30 @@ module TencentCloud
3736
3760
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3737
3761
  end
3738
3762
 
3763
+ # 云企付-查询核销订单状态,客户可以使用该接口来查询核销申请的订单状态。目前仅支持TENPAY渠道EBANK_PAYMENT付款方式的担保支付订单查询。
3764
+
3765
+ # @param request: Request instance for QueryOpenBankVerificationOrder.
3766
+ # @type request: :class:`Tencentcloud::cpdp::V20190820::QueryOpenBankVerificationOrderRequest`
3767
+ # @rtype: :class:`Tencentcloud::cpdp::V20190820::QueryOpenBankVerificationOrderResponse`
3768
+ def QueryOpenBankVerificationOrder(request)
3769
+ body = send_request('QueryOpenBankVerificationOrder', request.serialize)
3770
+ response = JSON.parse(body)
3771
+ if response['Response'].key?('Error') == false
3772
+ model = QueryOpenBankVerificationOrderResponse.new
3773
+ model.deserialize(response['Response'])
3774
+ model
3775
+ else
3776
+ code = response['Response']['Error']['Code']
3777
+ message = response['Response']['Error']['Message']
3778
+ reqid = response['Response']['RequestId']
3779
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3780
+ end
3781
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3782
+ raise e
3783
+ rescue StandardError => e
3784
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3785
+ end
3786
+
3739
3787
  # 根据订单号,或者用户Id,查询支付订单状态
3740
3788
 
3741
3789
  # @param request: Request instance for QueryOrder.
@@ -4840,6 +4888,30 @@ module TencentCloud
4840
4888
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4841
4889
  end
4842
4890
 
4891
+ # 云企付-子商户银行卡打款验证,在接入TENPAY渠道EBANK_PAYMENT付款时,若客户期望接入担保支付,需在接入前先完成,收款商户绑定的银行卡进行打款验证。验证成功后,才可以调用CreateOpenBankPaymentOrder接口进行担保支付下单。
4892
+
4893
+ # @param request: Request instance for VerifyOpenBankAccount.
4894
+ # @type request: :class:`Tencentcloud::cpdp::V20190820::VerifyOpenBankAccountRequest`
4895
+ # @rtype: :class:`Tencentcloud::cpdp::V20190820::VerifyOpenBankAccountResponse`
4896
+ def VerifyOpenBankAccount(request)
4897
+ body = send_request('VerifyOpenBankAccount', request.serialize)
4898
+ response = JSON.parse(body)
4899
+ if response['Response'].key?('Error') == false
4900
+ model = VerifyOpenBankAccountResponse.new
4901
+ model.deserialize(response['Response'])
4902
+ model
4903
+ else
4904
+ code = response['Response']['Error']['Code']
4905
+ message = response['Response']['Error']['Message']
4906
+ reqid = response['Response']['RequestId']
4907
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
4908
+ end
4909
+ rescue TencentCloud::Common::TencentCloudSDKException => e
4910
+ raise e
4911
+ rescue StandardError => e
4912
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4913
+ end
4914
+
4843
4915
  # 云支付-查询合同明细接口
4844
4916
 
4845
4917
  # @param request: Request instance for ViewContract.
@@ -6762,13 +6762,15 @@ module TencentCloud
6762
6762
  # __TENPAY__: 商企付
6763
6763
  # __WECHAT__: 微信支付
6764
6764
  # __ALIPAY__: 支付宝
6765
- # __WECHAT__: 微信支付
6765
+ # __HUIFU__: 汇付斗拱
6766
6766
  # @type ChannelName: String
6767
6767
  # @param PaymentMethod: 付款方式。详见附录-云企付枚举类说明-PaymentMethod。
6768
6768
  # __EBANK_PAYMENT__:B2B EBank付款
6769
6769
  # __OPENBANK_PAYMENT__:B2C openbank付款
6770
6770
  # __SAFT_ISV__:支付宝安心发
6771
6771
  # __TRANS_TO_CHANGE__: 微信支付转账到零钱v2
6772
+ # __TRANS_TO_CHANGE_V3__: 微信支付转账到零钱v3
6773
+ # __ONLINEBANK__: 汇付网银
6772
6774
  # @type PaymentMethod: String
6773
6775
  # @param PaymentMode: 付款模式。默认直接支付,如
6774
6776
  # __DIRECT__:直接支付
@@ -7338,6 +7340,127 @@ module TencentCloud
7338
7340
  end
7339
7341
  end
7340
7342
 
7343
+ # CreateOpenBankVerificationOrder请求参数结构体
7344
+ class CreateOpenBankVerificationOrderRequest < TencentCloud::Common::AbstractModel
7345
+ # @param ChannelMerchantId: 云企付渠道商户号。外部接入平台入驻云企付平台后下发。
7346
+ # @type ChannelMerchantId: String
7347
+ # @param OutVerificationId: 外部核销申请订单号
7348
+ # @type OutVerificationId: String
7349
+ # @param VerificationAmount: 核销金额,单位分
7350
+ # @type VerificationAmount: Integer
7351
+ # @param OutOrderId: 外部支付订单号。调用创建支付订单时,下单支付时的外部订单号。与ChannelOrderId不能同时为空。
7352
+ # @type OutOrderId: String
7353
+ # @param ChannelOrderId: 云企付渠道订单号。调用创建支付订单时,下单支付时的云企付渠道订单号。与OutOrderId不能同时为空。
7354
+ # @type ChannelOrderId: String
7355
+ # @param NotifyUrl: 核销成功回调地址。若不上送,则不回调通知。
7356
+ # @type NotifyUrl: String
7357
+ # @param Remark: 备注。
7358
+ # @type Remark: String
7359
+ # @param ExternalVerificationData: 第三方支付渠道需要额外上送字段。详情见附录描述。
7360
+ # @type ExternalVerificationData: String
7361
+ # @param Environment: 环境类型。
7362
+ # __release__:生产环境
7363
+ # __sandbox__:沙箱环境
7364
+ # _不填默认为生产环境_
7365
+ # @type Environment: String
7366
+
7367
+ attr_accessor :ChannelMerchantId, :OutVerificationId, :VerificationAmount, :OutOrderId, :ChannelOrderId, :NotifyUrl, :Remark, :ExternalVerificationData, :Environment
7368
+
7369
+ def initialize(channelmerchantid=nil, outverificationid=nil, verificationamount=nil, outorderid=nil, channelorderid=nil, notifyurl=nil, remark=nil, externalverificationdata=nil, environment=nil)
7370
+ @ChannelMerchantId = channelmerchantid
7371
+ @OutVerificationId = outverificationid
7372
+ @VerificationAmount = verificationamount
7373
+ @OutOrderId = outorderid
7374
+ @ChannelOrderId = channelorderid
7375
+ @NotifyUrl = notifyurl
7376
+ @Remark = remark
7377
+ @ExternalVerificationData = externalverificationdata
7378
+ @Environment = environment
7379
+ end
7380
+
7381
+ def deserialize(params)
7382
+ @ChannelMerchantId = params['ChannelMerchantId']
7383
+ @OutVerificationId = params['OutVerificationId']
7384
+ @VerificationAmount = params['VerificationAmount']
7385
+ @OutOrderId = params['OutOrderId']
7386
+ @ChannelOrderId = params['ChannelOrderId']
7387
+ @NotifyUrl = params['NotifyUrl']
7388
+ @Remark = params['Remark']
7389
+ @ExternalVerificationData = params['ExternalVerificationData']
7390
+ @Environment = params['Environment']
7391
+ end
7392
+ end
7393
+
7394
+ # CreateOpenBankVerificationOrder返回参数结构体
7395
+ class CreateOpenBankVerificationOrderResponse < TencentCloud::Common::AbstractModel
7396
+ # @param ErrCode: 业务系统返回码,SUCCESS表示成功,其他表示失败。
7397
+ # @type ErrCode: String
7398
+ # @param ErrMessage: 业务系统返回消息。
7399
+ # 注意:此字段可能返回 null,表示取不到有效值。
7400
+ # @type ErrMessage: String
7401
+ # @param Result: 核销申请响应对象。
7402
+ # 注意:此字段可能返回 null,表示取不到有效值。
7403
+ # @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.CreateOpenBankVerificationResult`
7404
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7405
+ # @type RequestId: String
7406
+
7407
+ attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
7408
+
7409
+ def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
7410
+ @ErrCode = errcode
7411
+ @ErrMessage = errmessage
7412
+ @Result = result
7413
+ @RequestId = requestid
7414
+ end
7415
+
7416
+ def deserialize(params)
7417
+ @ErrCode = params['ErrCode']
7418
+ @ErrMessage = params['ErrMessage']
7419
+ unless params['Result'].nil?
7420
+ @Result = CreateOpenBankVerificationResult.new
7421
+ @Result.deserialize(params['Result'])
7422
+ end
7423
+ @RequestId = params['RequestId']
7424
+ end
7425
+ end
7426
+
7427
+ # 云企付-核销确认收货申请响应结果
7428
+ class CreateOpenBankVerificationResult < TencentCloud::Common::AbstractModel
7429
+ # @param ChannelVerificationId: 云企付渠道核销订单号
7430
+ # @type ChannelVerificationId: String
7431
+ # @param ThirdVerificationId: 第三方支付渠道核销订单号
7432
+ # @type ThirdVerificationId: String
7433
+ # @param VerificationStatus: 核销状态
7434
+ # INIT("INIT","初始化"),
7435
+ # SUCCESS("SUCCESS","核销成功"),
7436
+ # FAILED("FAILED","核销失败"),
7437
+ # PROCESSING("PROCESSING","核销中");
7438
+ # @type VerificationStatus: String
7439
+ # @param VerificationAmount: 核销金额,单位分
7440
+ # @type VerificationAmount: Integer
7441
+ # @param ThirdVerificationReturnInfo: 渠道附加返回信息,一般情况可以不关注
7442
+ # 注意:此字段可能返回 null,表示取不到有效值。
7443
+ # @type ThirdVerificationReturnInfo: String
7444
+
7445
+ attr_accessor :ChannelVerificationId, :ThirdVerificationId, :VerificationStatus, :VerificationAmount, :ThirdVerificationReturnInfo
7446
+
7447
+ def initialize(channelverificationid=nil, thirdverificationid=nil, verificationstatus=nil, verificationamount=nil, thirdverificationreturninfo=nil)
7448
+ @ChannelVerificationId = channelverificationid
7449
+ @ThirdVerificationId = thirdverificationid
7450
+ @VerificationStatus = verificationstatus
7451
+ @VerificationAmount = verificationamount
7452
+ @ThirdVerificationReturnInfo = thirdverificationreturninfo
7453
+ end
7454
+
7455
+ def deserialize(params)
7456
+ @ChannelVerificationId = params['ChannelVerificationId']
7457
+ @ThirdVerificationId = params['ThirdVerificationId']
7458
+ @VerificationStatus = params['VerificationStatus']
7459
+ @VerificationAmount = params['VerificationAmount']
7460
+ @ThirdVerificationReturnInfo = params['ThirdVerificationReturnInfo']
7461
+ end
7462
+ end
7463
+
7341
7464
  # CreateOrder请求参数结构体
7342
7465
  class CreateOrderRequest < TencentCloud::Common::AbstractModel
7343
7466
  # @param ChannelCode: 渠道编号。ZSB2B:招商银行B2B。
@@ -9936,19 +10059,23 @@ module TencentCloud
9936
10059
  # @type FundingAccountType: String
9937
10060
  # @param FundingAccountBindSerialNo: 资金账户绑定序列号
9938
10061
  # @type FundingAccountBindSerialNo: String
10062
+ # @param FundingAccountName: 资金账户名称
10063
+ # @type FundingAccountName: String
9939
10064
 
9940
- attr_accessor :FundingAccountNo, :FundingAccountType, :FundingAccountBindSerialNo
10065
+ attr_accessor :FundingAccountNo, :FundingAccountType, :FundingAccountBindSerialNo, :FundingAccountName
9941
10066
 
9942
- def initialize(fundingaccountno=nil, fundingaccounttype=nil, fundingaccountbindserialno=nil)
10067
+ def initialize(fundingaccountno=nil, fundingaccounttype=nil, fundingaccountbindserialno=nil, fundingaccountname=nil)
9943
10068
  @FundingAccountNo = fundingaccountno
9944
10069
  @FundingAccountType = fundingaccounttype
9945
10070
  @FundingAccountBindSerialNo = fundingaccountbindserialno
10071
+ @FundingAccountName = fundingaccountname
9946
10072
  end
9947
10073
 
9948
10074
  def deserialize(params)
9949
10075
  @FundingAccountNo = params['FundingAccountNo']
9950
10076
  @FundingAccountType = params['FundingAccountType']
9951
10077
  @FundingAccountBindSerialNo = params['FundingAccountBindSerialNo']
10078
+ @FundingAccountName = params['FundingAccountName']
9952
10079
  end
9953
10080
  end
9954
10081
 
@@ -12504,10 +12631,13 @@ module TencentCloud
12504
12631
  # @param InPayBalance: 提现中余额
12505
12632
  # 注意:此字段可能返回 null,表示取不到有效值。
12506
12633
  # @type InPayBalance: String
12634
+ # @param SumSettlementAmount: 累计结算金额
12635
+ # 注意:此字段可能返回 null,表示取不到有效值。
12636
+ # @type SumSettlementAmount: String
12507
12637
 
12508
- attr_accessor :AccountId, :IncomeType, :Balance, :SystemFreezeBalance, :ManualFreezeBalance, :PayableBalance, :PaidBalance, :InPayBalance
12638
+ attr_accessor :AccountId, :IncomeType, :Balance, :SystemFreezeBalance, :ManualFreezeBalance, :PayableBalance, :PaidBalance, :InPayBalance, :SumSettlementAmount
12509
12639
 
12510
- def initialize(accountid=nil, incometype=nil, balance=nil, systemfreezebalance=nil, manualfreezebalance=nil, payablebalance=nil, paidbalance=nil, inpaybalance=nil)
12640
+ def initialize(accountid=nil, incometype=nil, balance=nil, systemfreezebalance=nil, manualfreezebalance=nil, payablebalance=nil, paidbalance=nil, inpaybalance=nil, sumsettlementamount=nil)
12511
12641
  @AccountId = accountid
12512
12642
  @IncomeType = incometype
12513
12643
  @Balance = balance
@@ -12516,6 +12646,7 @@ module TencentCloud
12516
12646
  @PayableBalance = payablebalance
12517
12647
  @PaidBalance = paidbalance
12518
12648
  @InPayBalance = inpaybalance
12649
+ @SumSettlementAmount = sumsettlementamount
12519
12650
  end
12520
12651
 
12521
12652
  def deserialize(params)
@@ -12527,6 +12658,7 @@ module TencentCloud
12527
12658
  @PayableBalance = params['PayableBalance']
12528
12659
  @PaidBalance = params['PaidBalance']
12529
12660
  @InPayBalance = params['InPayBalance']
12661
+ @SumSettlementAmount = params['SumSettlementAmount']
12530
12662
  end
12531
12663
  end
12532
12664
 
@@ -19288,6 +19420,112 @@ module TencentCloud
19288
19420
  end
19289
19421
  end
19290
19422
 
19423
+ # QueryOpenBankVerificationOrder请求参数结构体
19424
+ class QueryOpenBankVerificationOrderRequest < TencentCloud::Common::AbstractModel
19425
+ # @param ChannelMerchantId: 云企付渠道商户号。外部接入平台入驻云企付平台后下发。
19426
+ # @type ChannelMerchantId: String
19427
+ # @param ChannelVerificationId: 云企付渠道核销订单号。与OutVerificationId不能同时为空。
19428
+ # @type ChannelVerificationId: String
19429
+ # @param OutVerificationId: 外部核销申请订单号。与ChannelVerificationId不能同时为空。
19430
+ # @type OutVerificationId: String
19431
+ # @param Environment: 环境类型。
19432
+ # __release__:生产环境
19433
+ # __sandbox__:沙箱环境
19434
+ # _不填默认为生产环境_
19435
+ # @type Environment: String
19436
+
19437
+ attr_accessor :ChannelMerchantId, :ChannelVerificationId, :OutVerificationId, :Environment
19438
+
19439
+ def initialize(channelmerchantid=nil, channelverificationid=nil, outverificationid=nil, environment=nil)
19440
+ @ChannelMerchantId = channelmerchantid
19441
+ @ChannelVerificationId = channelverificationid
19442
+ @OutVerificationId = outverificationid
19443
+ @Environment = environment
19444
+ end
19445
+
19446
+ def deserialize(params)
19447
+ @ChannelMerchantId = params['ChannelMerchantId']
19448
+ @ChannelVerificationId = params['ChannelVerificationId']
19449
+ @OutVerificationId = params['OutVerificationId']
19450
+ @Environment = params['Environment']
19451
+ end
19452
+ end
19453
+
19454
+ # QueryOpenBankVerificationOrder返回参数结构体
19455
+ class QueryOpenBankVerificationOrderResponse < TencentCloud::Common::AbstractModel
19456
+ # @param ErrCode: 业务系统返回码,SUCCESS表示成功,其他表示失败。
19457
+ # @type ErrCode: String
19458
+ # @param ErrMessage: 业务系统返回消息。
19459
+ # 注意:此字段可能返回 null,表示取不到有效值。
19460
+ # @type ErrMessage: String
19461
+ # @param Result: 核销查询响应对象。
19462
+ # 注意:此字段可能返回 null,表示取不到有效值。
19463
+ # @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.QueryOpenBankVerificationResult`
19464
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
19465
+ # @type RequestId: String
19466
+
19467
+ attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
19468
+
19469
+ def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
19470
+ @ErrCode = errcode
19471
+ @ErrMessage = errmessage
19472
+ @Result = result
19473
+ @RequestId = requestid
19474
+ end
19475
+
19476
+ def deserialize(params)
19477
+ @ErrCode = params['ErrCode']
19478
+ @ErrMessage = params['ErrMessage']
19479
+ unless params['Result'].nil?
19480
+ @Result = QueryOpenBankVerificationResult.new
19481
+ @Result.deserialize(params['Result'])
19482
+ end
19483
+ @RequestId = params['RequestId']
19484
+ end
19485
+ end
19486
+
19487
+ # 云企付-查询核销申请结果
19488
+ class QueryOpenBankVerificationResult < TencentCloud::Common::AbstractModel
19489
+ # @param ChannelVerificationId: 云企付渠道核销订单号
19490
+ # @type ChannelVerificationId: String
19491
+ # @param ThirdVerificationId: 第三方支付渠道核销订单号
19492
+ # @type ThirdVerificationId: String
19493
+ # @param VerificationAmount: 核销金额,单位分
19494
+ # @type VerificationAmount: Integer
19495
+ # @param VerificationStatus: 核销状态
19496
+ # INIT("INIT","初始化"),
19497
+ # SUCCESS("SUCCESS","核销成功"),
19498
+ # FAILED("FAILED","核销失败"),
19499
+ # PROCESSING("PROCESSING","核销中");
19500
+ # @type VerificationStatus: String
19501
+ # @param FailReason: 失败原因,若核销失败,附上原因。
19502
+ # 注意:此字段可能返回 null,表示取不到有效值。
19503
+ # @type FailReason: String
19504
+ # @param ThirdVerificationReturnData: 渠道附加返回信息,一般情况可以不关注
19505
+ # 注意:此字段可能返回 null,表示取不到有效值。
19506
+ # @type ThirdVerificationReturnData: String
19507
+
19508
+ attr_accessor :ChannelVerificationId, :ThirdVerificationId, :VerificationAmount, :VerificationStatus, :FailReason, :ThirdVerificationReturnData
19509
+
19510
+ def initialize(channelverificationid=nil, thirdverificationid=nil, verificationamount=nil, verificationstatus=nil, failreason=nil, thirdverificationreturndata=nil)
19511
+ @ChannelVerificationId = channelverificationid
19512
+ @ThirdVerificationId = thirdverificationid
19513
+ @VerificationAmount = verificationamount
19514
+ @VerificationStatus = verificationstatus
19515
+ @FailReason = failreason
19516
+ @ThirdVerificationReturnData = thirdverificationreturndata
19517
+ end
19518
+
19519
+ def deserialize(params)
19520
+ @ChannelVerificationId = params['ChannelVerificationId']
19521
+ @ThirdVerificationId = params['ThirdVerificationId']
19522
+ @VerificationAmount = params['VerificationAmount']
19523
+ @VerificationStatus = params['VerificationStatus']
19524
+ @FailReason = params['FailReason']
19525
+ @ThirdVerificationReturnData = params['ThirdVerificationReturnData']
19526
+ end
19527
+ end
19528
+
19291
19529
  # 查询订单接口的出参,订单列表
19292
19530
  class QueryOrderOutOrderList < TencentCloud::Common::AbstractModel
19293
19531
  # @param MidasAppId: 聚鑫分配的支付主MidasAppId
@@ -21964,15 +22202,16 @@ module TencentCloud
21964
22202
  # @type OutRefundId: String
21965
22203
  # @param RefundAmount: 退款金额。单位分。
21966
22204
  # @type RefundAmount: Integer
21967
- # @param ChannelMerchantId: 渠道商户号。
22205
+ # @param ChannelMerchantId: 渠道商户号。外部平台接入云企付平台下发。必填。
21968
22206
  # @type ChannelMerchantId: String
21969
- # @param OutOrderId: 外部商户订单号,与云企付渠道订单号二者选填其一。
22207
+ # @param OutOrderId: 外部商户订单号,与云企付渠道订单号二者不能同时为空。
21970
22208
  # @type OutOrderId: String
21971
- # @param ChannelOrderId: 云企付渠道订单号,与外部订单号二者选填其一。
22209
+ # @param ChannelOrderId: 云企付渠道订单号,与外部订单号二者不能同时为空。
21972
22210
  # @type ChannelOrderId: String
21973
22211
  # @param NotifyUrl: 退款通知地址。
21974
22212
  # @type NotifyUrl: String
21975
22213
  # @param RefundReason: 退款原因。
22214
+ # 当EBANK_PAYMENT担保支付订单退款时,此字段必传。
21976
22215
  # @type RefundReason: String
21977
22216
  # @param ExternalRefundData: 第三方渠道退款附加信息。详见附录-复杂类型。
21978
22217
  # 若未作特殊说明,则无需传入。
@@ -25397,6 +25636,106 @@ module TencentCloud
25397
25636
  end
25398
25637
  end
25399
25638
 
25639
+ # VerifyOpenBankAccount请求参数结构体
25640
+ class VerifyOpenBankAccountRequest < TencentCloud::Common::AbstractModel
25641
+ # @param ChannelMerchantId: 渠道商户号。外部接入平台入驻云企付平台下发
25642
+ # @type ChannelMerchantId: String
25643
+ # @param ChannelName: 渠道名称。详见附录-云企付枚举类说明-ChannelName。
25644
+ # __TENPAY__: 商企付
25645
+ # @type ChannelName: String
25646
+ # @param PayeeInfo: 收款方信息。
25647
+ # @type PayeeInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankPayeeInfo`
25648
+ # @param NotifyUrl: 通知地址,如www.test.com。
25649
+ # @type NotifyUrl: String
25650
+ # @param Environment: 环境类型。
25651
+ # __release__:生产环境
25652
+ # __sandbox__:沙箱环境
25653
+ # _不填默认为生产环境_
25654
+ # @type Environment: String
25655
+
25656
+ attr_accessor :ChannelMerchantId, :ChannelName, :PayeeInfo, :NotifyUrl, :Environment
25657
+
25658
+ def initialize(channelmerchantid=nil, channelname=nil, payeeinfo=nil, notifyurl=nil, environment=nil)
25659
+ @ChannelMerchantId = channelmerchantid
25660
+ @ChannelName = channelname
25661
+ @PayeeInfo = payeeinfo
25662
+ @NotifyUrl = notifyurl
25663
+ @Environment = environment
25664
+ end
25665
+
25666
+ def deserialize(params)
25667
+ @ChannelMerchantId = params['ChannelMerchantId']
25668
+ @ChannelName = params['ChannelName']
25669
+ unless params['PayeeInfo'].nil?
25670
+ @PayeeInfo = OpenBankPayeeInfo.new
25671
+ @PayeeInfo.deserialize(params['PayeeInfo'])
25672
+ end
25673
+ @NotifyUrl = params['NotifyUrl']
25674
+ @Environment = params['Environment']
25675
+ end
25676
+ end
25677
+
25678
+ # VerifyOpenBankAccount返回参数结构体
25679
+ class VerifyOpenBankAccountResponse < TencentCloud::Common::AbstractModel
25680
+ # @param ErrCode: 业务系统返回码,SUCCESS表示成功,其他表示失败。
25681
+ # @type ErrCode: String
25682
+ # @param ErrMessage: 业务系统返回消息。
25683
+ # 注意:此字段可能返回 null,表示取不到有效值。
25684
+ # @type ErrMessage: String
25685
+ # @param Result: 打款验证结果。前端使用url字段,根据指引完成打款验证动作
25686
+ # 注意:此字段可能返回 null,表示取不到有效值。
25687
+ # @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.VerifyOpenBankAccountResult`
25688
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
25689
+ # @type RequestId: String
25690
+
25691
+ attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
25692
+
25693
+ def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
25694
+ @ErrCode = errcode
25695
+ @ErrMessage = errmessage
25696
+ @Result = result
25697
+ @RequestId = requestid
25698
+ end
25699
+
25700
+ def deserialize(params)
25701
+ @ErrCode = params['ErrCode']
25702
+ @ErrMessage = params['ErrMessage']
25703
+ unless params['Result'].nil?
25704
+ @Result = VerifyOpenBankAccountResult.new
25705
+ @Result.deserialize(params['Result'])
25706
+ end
25707
+ @RequestId = params['RequestId']
25708
+ end
25709
+ end
25710
+
25711
+ # 打款验证响应结果结构体
25712
+ class VerifyOpenBankAccountResult < TencentCloud::Common::AbstractModel
25713
+ # @param VerifyState: 打款验证状态。
25714
+ # INIT("打款中"),
25715
+ # PENDING("打款成功待验证"),
25716
+ # VERIFIED("验证成功"),
25717
+ # FAILED("打款失败"),
25718
+ # VERIFY_FAILED("验证失败")
25719
+ # @type VerifyState: String
25720
+ # @param RedirectInfo: 重定向参数,用于客户端跳转,收款商户未完成打款验证时返回该参数
25721
+ # @type RedirectInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankRedirectInfo`
25722
+
25723
+ attr_accessor :VerifyState, :RedirectInfo
25724
+
25725
+ def initialize(verifystate=nil, redirectinfo=nil)
25726
+ @VerifyState = verifystate
25727
+ @RedirectInfo = redirectinfo
25728
+ end
25729
+
25730
+ def deserialize(params)
25731
+ @VerifyState = params['VerifyState']
25732
+ unless params['RedirectInfo'].nil?
25733
+ @RedirectInfo = OpenBankRedirectInfo.new
25734
+ @RedirectInfo.deserialize(params['RedirectInfo'])
25735
+ end
25736
+ end
25737
+ end
25738
+
25400
25739
  # ViewContract请求参数结构体
25401
25740
  class ViewContractRequest < TencentCloud::Common::AbstractModel
25402
25741
  # @param OpenId: 收单系统分配的开放ID
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.351
4
+ version: 1.0.354
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-07-08 00:00:00.000000000 Z
11
+ date: 2022-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common