You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
727 B
C#

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