Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcapiprodDrawndnFeerecordQueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

25 lines
585 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcapiprodDrawndnFeerecordQueryResponse.
/// </summary>
public class AlipayEcapiprodDrawndnFeerecordQueryResponse : AopResponse
{
/// <summary>
/// 费用交易流水
/// </summary>
[JsonProperty("fee_records")]
public List<FeeRecords> FeeRecords { get; set; }
/// <summary>
/// 唯一标识这次请求
/// </summary>
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}