using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayEcapiprodDrawndnRepaymentrecordQueryResponse. /// public class AlipayEcapiprodDrawndnRepaymentrecordQueryResponse : AopResponse { /// /// 还款流水 /// [JsonProperty("repayment_records")] public List RepaymentRecords { get; set; } /// /// 唯一标识这次请求 /// [JsonProperty("request_id")] public string RequestId { get; set; } } }