weixin.popular.bean.wxopen.TemplateLibraryGetResult 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.
package weixin.popular.bean.wxopen;
import java.util.List;
import weixin.popular.bean.BaseResult;
public class TemplateLibraryGetResult extends BaseResult {
private String id;
private String title;
private List keyword_list;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public List getKeyword_list() {
return keyword_list;
}
public void setKeyword_list(List keyword_list) {
this.keyword_list = keyword_list;
}
}