
com.alipay.api.response.AlipayPassSyncAddResponse 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
baidu push client api with maven
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.pass.sync.add response.
*
* @author auto create
* @since 1.0, 2016-12-16 16:35:12
*/
public class AlipayPassSyncAddResponse extends AlipayResponse {
private static final long serialVersionUID = 4657775736672733641L;
/**
* 成功时返回的业务参数信息。
*/
@ApiField("biz_result")
private String bizResult;
/**
* 当新增alipass不成功时,产生的错误码。
*/
@ApiField("error_code")
private String errorCode;
/**
* 成功标识
*/
@ApiField("success")
private Boolean success;
public void setBizResult(String bizResult) {
this.bizResult = bizResult;
}
public String 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