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

weixin.popular.bean.message.templatemessage.TemplateMessage Maven / Gradle / Ivy

Go to download

The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.

There is a newer version: 2.8.32
Show newest version
package weixin.popular.bean.message.templatemessage;

import java.util.LinkedHashMap;

public class TemplateMessage {

	private String touser;

	private String template_id;

	private String url;

	private String topcolor;

	private LinkedHashMap data;

	public String getTouser() {
		return touser;
	}



	public void setTouser(String touser) {
		this.touser = touser;
	}



	public String getTemplate_id() {
		return template_id;
	}



	public void setTemplate_id(String template_id) {
		this.template_id = template_id;
	}



	public String getUrl() {
		return url;
	}



	public void setUrl(String url) {
		this.url = url;
	}



	public String getTopcolor() {
		return topcolor;
	}



	public void setTopcolor(String topcolor) {
		this.topcolor = topcolor;
	}



	public LinkedHashMap getData() {
		return data;
	}



	public void setData(LinkedHashMap data) {
		this.data = data;
	}




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy