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

weixin.popular.bean.wxopen.TemplateLibraryGetResult Maven / Gradle / Ivy

Go to download

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.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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy