com.alipay.api.response.AlipayEcapiprodDrawndnPaymentscheduleGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.PaymentSchedule;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ecapiprod.drawndn.paymentschedule.get response.
*
* @author auto create
* @since 1.0, 2016-03-29 11:34:20
*/
public class AlipayEcapiprodDrawndnPaymentscheduleGetResponse extends AlipayResponse {
private static final long serialVersionUID = 7741327748972342585L;
/**
* 返回的支用还款计划集合
*/
@ApiListField("payment_schedules")
@ApiField("payment_schedule")
private List paymentSchedules;
/**
* 唯一标识这次请求
*/
@ApiField("request_id")
private String requestId;
public void setPaymentSchedules(List paymentSchedules) {
this.paymentSchedules = paymentSchedules;
}
public List getPaymentSchedules( ) {
return this.paymentSchedules;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRequestId( ) {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy