// This file is auto-generated, don't edit it. Thanks. package com.alipay.easysdk.payment.common.models; import com.aliyun.tea.*; public class TradeFundBill extends TeaModel { @NameInMap("fund_channel") @Validation(required = true) public String fundChannel; @NameInMap("bank_code") @Validation(required = true) public String bankCode; @NameInMap("amount") @Validation(required = true) public String amount; @NameInMap("real_amount") @Validation(required = true) public String realAmount; @NameInMap("fund_type") @Validation(required = true) public String fundType; public static TradeFundBill build(java.util.Map map) throws Exception { TradeFundBill self = new TradeFundBill(); return TeaModel.build(map, self); } public TradeFundBill setFundChannel(String fundChannel) { this.fundChannel = fundChannel; return this; } public String getFundChannel() { return this.fundChannel; } public TradeFundBill setBankCode(String bankCode) { this.bankCode = bankCode; return this; } public String getBankCode() { return this.bankCode; } public TradeFundBill setAmount(String amount) { this.amount = amount; return this; } public String getAmount() { return this.amount; } public TradeFundBill setRealAmount(String realAmount) { this.realAmount = realAmount; return this; } public String getRealAmount() { return this.realAmount; } public TradeFundBill setFundType(String fundType) { this.fundType = fundType; return this; } public String getFundType() { return this.fundType; } }