using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayTradePagePayResponse. /// public class AlipayTradePagePayResponse : AopResponse { /// /// 商户订单号 /// [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } /// /// 收款支付宝账号对应的支付宝唯一用户号。 以2088开头的纯16位数字 /// [XmlElement("seller_id")] public string SellerId { get; set; } /// /// 交易金额 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 支付宝交易号 /// [XmlElement("trade_no")] public string TradeNo { get; set; } } }