using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPcreditHuabeiDiscountBillQueryResponse. /// public class AlipayPcreditHuabeiDiscountBillQueryResponse : AopResponse { /// /// 外部交易号 /// [XmlElement("charge_no")] public string ChargeNo { get; set; } /// /// 分期服务费 /// [XmlElement("discount_amount")] public string DiscountAmount { get; set; } /// /// 支付宝交易号 /// [XmlElement("pay_trade_no")] public string PayTradeNo { get; set; } /// /// 账单交易金额 /// [XmlElement("trade_amount")] public string TradeAmount { get; set; } /// /// 交易时间 /// [XmlElement("trade_time")] public string TradeTime { get; set; } } }