com.alipay.api.response.AlipayEbppJfSignConsultResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.jf.sign.consult response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:31:52
*/
public class AlipayEbppJfSignConsultResponse extends AlipayResponse {
private static final long serialVersionUID = 8612197474912391315L;
/**
* 咨询结果代码,允许签约时为SUCCESS, 其他情况根据不同的机构返回咨询异常设置
*/
@ApiField("result_code")
private String resultCode;
/**
* 签约结果文案, 当允许签约时为空
*/
@ApiField("result_msg")
private String resultMsg;
/**
* 是否允许签约
*/
@ApiField("sign_allowed")
private Boolean signAllowed;
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
public String getResultCode( ) {
return this.resultCode;
}
public void setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
}
public String getResultMsg( ) {
return this.resultMsg;
}
public void setSignAllowed(Boolean signAllowed) {
this.signAllowed = signAllowed;
}
public Boolean getSignAllowed( ) {
return this.signAllowed;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy