using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEcapiprodDrawndnPaymentscheduleGetResponse. /// public class AlipayEcapiprodDrawndnPaymentscheduleGetResponse : AopResponse { /// /// 返回的支用还款计划集合 /// [XmlArray("payment_schedules")] [XmlArrayItem("payment_schedule")] public List PaymentSchedules { get; set; } /// /// 唯一标识这次请求 /// [XmlElement("request_id")] public string RequestId { get; set; } } }