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

weixin.popular.bean.message.templatemessage.TemplateMessageItem 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.43
Show newest version
package weixin.popular.bean.message.templatemessage;

public class TemplateMessageItem{
	private String value;

	private String color;

	public TemplateMessageItem() {
	}

	public TemplateMessageItem(String value) {
		this.value = value;
	}

	public TemplateMessageItem(String value, String color) {
		super();
		this.value = value;
		this.color = color;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	public String getColor() {
		return color;
	}

	public void setColor(String color) {
		this.color = color;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy