using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayUserTradeSearchResponse. /// public class AlipayUserTradeSearchResponse : AopResponse { /// /// 总页数 /// [XmlElement("total_pages")] public string TotalPages { get; set; } /// /// 总记录数 /// [XmlElement("total_results")] public string TotalResults { get; set; } /// /// 交易记录列表 /// [XmlArray("trade_records")] [XmlArrayItem("trade_record")] public List TradeRecords { get; set; } } }