using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPcreditHuabeiAuthAccumulationQueryResponse. /// public class AlipayPcreditHuabeiAuthAccumulationQueryResponse : AopResponse { /// /// 本周期内支付宝端根据用户消费情况试算出的应付费用,仅供参考使用。 /// [XmlElement("pay_amount")] public string PayAmount { get; set; } /// /// 本周期内用户累计享受的优惠金额 /// [XmlElement("total_discount_amount")] public string TotalDiscountAmount { get; set; } /// /// 本周期内用户总的消费次数 /// [XmlElement("total_pay_count")] public string TotalPayCount { get; set; } /// /// 本周期内用户累计支付宝付款金额 /// [XmlElement("total_real_pay_amount")] public string TotalRealPayAmount { get; set; } } }