
com.alipay.api.response.KoubeiItemExtitemCategoryQueryResponse 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 java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.ExtCategory;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.item.extitem.category.query response.
*
* @author auto create
* @since 1.0, 2016-07-06 10:47:52
*/
public class KoubeiItemExtitemCategoryQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2689375144494171562L;
/**
* 品类信息列表
*/
@ApiListField("category_list")
@ApiField("ext_category")
private List categoryList;
public void setCategoryList(List categoryList) {
this.categoryList = categoryList;
}
public List getCategoryList( ) {
return this.categoryList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy