All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayPcreditLoanSideloanrepayLoanarBatchqueryResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show 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.Loan;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.pcredit.loan.sideloanrepay.loanar.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2024-12-02 17:42:15
 */
public class AlipayPcreditLoanSideloanrepayLoanarBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 4458415437163967874L;

	/** 
	 * 批量查询到的借据列表
	 */
	@ApiListField("loan_list")
	@ApiField("loan")
	private List loanList;

	/** 
	 * 表示请求处理状态。 SUCCESS - 成功 NEED_RETRY -需要重试 FAIL - 不可重试
	 */
	@ApiField("return_code")
	private String returnCode;

	/** 
	 * returnCode为FAIL或者NEED_RETRY状态下,返回具体错误码
	 */
	@ApiField("return_sub_code")
	private String returnSubCode;

	/** 
	 * 可以详细描述失败原因,方便双方定位问题
	 */
	@ApiField("return_sub_message")
	private String returnSubMessage;

	public void setLoanList(List loanList) {
		this.loanList = loanList;
	}
	public List getLoanList( ) {
		return this.loanList;
	}

	public void setReturnCode(String returnCode) {
		this.returnCode = returnCode;
	}
	public String getReturnCode( ) {
		return this.returnCode;
	}

	public void setReturnSubCode(String returnSubCode) {
		this.returnSubCode = returnSubCode;
	}
	public String getReturnSubCode( ) {
		return this.returnSubCode;
	}

	public void setReturnSubMessage(String returnSubMessage) {
		this.returnSubMessage = returnSubMessage;
	}
	public String getReturnSubMessage( ) {
		return this.returnSubMessage;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy