com.alipay.api.response.AlipayPassSyncUpdateResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.pass.sync.update response.
*
* @author auto create
* @since 1.0, 2016-07-01 15:32:40
*/
public class AlipayPassSyncUpdateResponse extends AlipayResponse {
private static final long serialVersionUID = 6195218547556758569L;
/**
* 更新成功时的业务信息
*/
@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