using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayUserTradeSearchResponse. /// public class AlipayUserTradeSearchResponse : AopResponse { /// /// 总页数 /// [JsonProperty("total_pages")] public string TotalPages { get; set; } /// /// 总记录数 /// [JsonProperty("total_results")] public string TotalResults { get; set; } /// /// 交易记录列表 /// [JsonProperty("trade_records")] public List TradeRecords { get; set; } } }