using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayEcapiprodDrawndnPaymentscheduleGetResponse. /// public class AlipayEcapiprodDrawndnPaymentscheduleGetResponse : AopResponse { /// /// 返回的支用还款计划集合 /// [JsonProperty("payment_schedules")] public List PaymentSchedules { get; set; } /// /// 唯一标识这次请求 /// [JsonProperty("request_id")] public string RequestId { get; set; } } }