com.alipay.api.domain.TradeFundBill Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 交易支付的渠道属性
*
* @author auto create
* @since 1.0, 2019-08-17 17:45:10
*/
public class TradeFundBill extends AlipayObject {
private static final long serialVersionUID = 6676783522183288231L;
/**
* 该支付工具类型所使用的金额
*/
@ApiField("amount")
private String amount;
/**
* 银行卡支付时的银行代码
*/
@ApiField("bank_code")
private String bankCode;
/**
* 交易使用的资金渠道,详见 支付渠道列表
*/
@ApiField("fund_channel")
private String fundChannel;
/**
* 渠道所使用的资金类型,目前只在资金渠道(fund_channel)是银行卡渠道(BANKCARD)的情况下才返回该信息(DEBIT_CARD:借记卡,CREDIT_CARD:信用卡,MIXED_CARD:借贷合一卡)
*/
@ApiField("fund_type")
private String fundType;
/**
* 渠道实际付款金额
*/
@ApiField("real_amount")
private String realAmount;
public String getAmount() {
return this.amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
public String getBankCode() {
return this.bankCode;
}
public void setBankCode(String bankCode) {
this.bankCode = bankCode;
}
public String getFundChannel() {
return this.fundChannel;
}
public void setFundChannel(String fundChannel) {
this.fundChannel = fundChannel;
}
public String getFundType() {
return this.fundType;
}
public void setFundType(String fundType) {
this.fundType = fundType;
}
public String getRealAmount() {
return this.realAmount;
}
public void setRealAmount(String realAmount) {
this.realAmount = realAmount;
}
}