com.alipay.api.response.AlipayPcreditLoanSideloansignAgreementPullResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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.AgreementView;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.pcredit.loan.sideloansign.agreement.pull response.
*
* @author auto create
* @since 1.0, 2024-12-02 17:42:40
*/
public class AlipayPcreditLoanSideloansignAgreementPullResponse extends AlipayResponse {
private static final long serialVersionUID = 1844689733955639985L;
/**
* 曝光返回需要签署的协议列表, 类型为List
*/
@ApiListField("agreement_list")
@ApiField("agreement_view")
private List agreementList;
/**
* 协议曝光结果透传给下游业务接口的信息
*/
@ApiField("extension")
private String extension;
/**
* 表示当前请求处理状态
*/
@ApiField("return_code")
private String returnCode;
/**
* returnCode为FAIL或者NEED_RETRY状态下,返回具体详细子级错误码
*/
@ApiField("return_sub_code")
private String returnSubCode;
/**
* return_code为FAIL时, 需要返回return_sub_message以详细描述失败原因,方便双方定位问题
*/
@ApiField("return_sub_message")
private String returnSubMessage;
public void setAgreementList(List agreementList) {
this.agreementList = agreementList;
}
public List getAgreementList( ) {
return this.agreementList;
}
public void setExtension(String extension) {
this.extension = extension;
}
public String getExtension( ) {
return this.extension;
}
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