com.alipay.api.response.AlipayFlashsalesStockSyncUpdateResponse 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.flashsales.stock.sync.update response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:31:54
*/
public class AlipayFlashsalesStockSyncUpdateResponse extends AlipayResponse {
private static final long serialVersionUID = 5635195889754661433L;
/**
* 成功时返回的业务参数信息。
*/
@ApiField("biz_result")
private String bizResult;
/**
* 当更新库存不成功时,错误码
*/
@ApiField("error_code")
private String errorCode;
/**
* 成功标识
*/
@ApiField("success")
private String 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(String success) {
this.success = success;
}
public String getSuccess( ) {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy