com.alipay.api.response.AlipayEcapiprodDrawndnRepaymentrecordQueryResponse 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.RepaymentRecords;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ecapiprod.drawndn.repaymentrecord.query response.
*
* @author auto create
* @since 1.0, 2016-03-29 11:34:40
*/
public class AlipayEcapiprodDrawndnRepaymentrecordQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4441446247841241491L;
/**
* 还款流水
*/
@ApiListField("repayment_records")
@ApiField("repayment_records")
private List repaymentRecords;
/**
* 唯一标识这次请求
*/
@ApiField("request_id")
private String requestId;
public void setRepaymentRecords(List repaymentRecords) {
this.repaymentRecords = repaymentRecords;
}
public List getRepaymentRecords( ) {
return this.repaymentRecords;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRequestId( ) {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy