All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayOfflineMarketShopPublicBindResponse Maven / Gradle / Ivy

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.bind response.
 * 
 * @author auto create
 * @since 1.0, 2016-07-29 19:57:30
 */
public class AlipayOfflineMarketShopPublicBindResponse extends AlipayResponse {

	private static final long serialVersionUID = 8693439817584295156L;

	/** 
	 * 绑定失败的店铺ID列表
	 */
	@ApiListField("error_binding_shop_ids")
	@ApiField("string")
	private List errorBindingShopIds;

	/** 
	 * 数字类型,标示总的绑定错误总数
	 */
	@ApiField("total_error")
	private Long totalError;

	/** 
	 * 绑定店铺总成功数
	 */
	@ApiField("total_success")
	private Long totalSuccess;

	public void setErrorBindingShopIds(List errorBindingShopIds) {
		this.errorBindingShopIds = errorBindingShopIds;
	}
	public List getErrorBindingShopIds( ) {
		return this.errorBindingShopIds;
	}

	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