using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// FundBill Data Structure. /// [Serializable] public class FundBill : AopObject { /// /// 该支付工具类型所使用的金额 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 银行卡支付时的银行代码 /// [XmlElement("bank_code")] public string BankCode { get; set; } /// /// 交易使用的资金渠道,详见 支付渠道列表https://alipay.open.taobao.com/doc2/detail?treeId=26&articleId=103259&docType=1 /// [XmlElement("fund_channel")] public string FundChannel { get; set; } /// /// 渠道实际付款金额 /// [XmlElement("real_amount")] public string RealAmount { get; set; } } }