
com.alipay.api.response.AlipayOfflineMarketShopPublicUnbindResponse 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.offline.market.shop.public.unbind response.
*
* @author auto create
* @since 1.0, 2016-12-19 20:52:06
*/
public class AlipayOfflineMarketShopPublicUnbindResponse extends AlipayResponse {
private static final long serialVersionUID = 4213511969564869124L;
/**
* 绑定失败的店铺ID列表,绑定失败原因可能是:a)检测到shop_id不存在;b)检测到shop_id不属于当前商户;c)该门店ID已经绑定服务窗
*/
@ApiListField("error_un_binding_shop_ids")
@ApiField("string")
private List errorUnBindingShopIds;
/**
* 总的基础绑定错误数
*/
@ApiField("total_error")
private Long totalError;
/**
* 总的解除绑定成功数
*/
@ApiField("total_success")
private Long totalSuccess;
public void setErrorUnBindingShopIds(List errorUnBindingShopIds) {
this.errorUnBindingShopIds = errorUnBindingShopIds;
}
public List getErrorUnBindingShopIds( ) {
return this.errorUnBindingShopIds;
}
public void setTotalError(Long totalError) {
this.totalError = totalError;
}
public Long getTotalError( ) {
return this.totalError;
}
public void setTotalSuccess(Long totalSuccess) {
this.totalSuccess = totalSuccess;
}
public Long getTotalSuccess( ) {
return this.totalSuccess;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy