com.alipay.api.response.AlipayPassCodeAddResponse 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.AlipayResponse;
/**
* ALIPAY API: alipay.pass.code.add response.
*
* @author auto create
* @since 1.0, 2014-06-12 17:16:12
*/
public class AlipayPassCodeAddResponse extends AlipayResponse {
private static final long serialVersionUID = 8736282813561995867L;
/**
* 成功时返回业务参数
*/
@ApiListField("biz_result")
@ApiField("string")
private List bizResult;
/**
* 返回码.
*/
@ApiField("error_code")
private String errorCode;
/**
* 是否发码成功的标识。
*/
@ApiField("success")
private Boolean success;
public void setBizResult(List bizResult) {
this.bizResult = bizResult;
}
public List getBizResult( ) {
return this.bizResult;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorCode( ) {
return this.errorCode;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Boolean getSuccess( ) {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy