Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayUserTradeSearchResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

31 lines
681 B
C#

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