weixin.popular.bean.scan.result.MerchantinfoGetResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
The newest version!
package weixin.popular.bean.scan.result;
import weixin.popular.bean.BaseResult;
import weixin.popular.bean.scan.infolist.VerifiedList;
import java.util.List;
public class MerchantinfoGetResult extends BaseResult {
private String[] brand_tag_list;
private List verified_list;
public String[] getBrand_tag_list() {
return brand_tag_list;
}
public void setBrand_tag_list(String[] brand_tag_list) {
this.brand_tag_list = brand_tag_list;
}
public List getVerified_list() {
return verified_list;
}
public void setVerified_list(List verified_list) {
this.verified_list = verified_list;
}
}