using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace PaySharp.Alipay.Domain
{
[JsonObject(NamingStrategyType = typeof(SnakeCaseNamingStrategy))]
public class TradeFundBill
{
///
/// 交易使用的资金渠道,详见 https://doc.open.alipay.com/doc2/detail?treeId=26&articleId=103259&docType=1
///
public string FundChannel { get; set; }
///
/// 银行卡支付时的银行代码
///
public string BankCode { get; set; }
///
/// 该支付工具类型所使用的金额
///
public double Amount { get; set; }
///
/// 渠道实际付款金额
///
public double RealAmount { get; set; }
}
}