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