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

weixin.popular.bean.message.MessageSendResult 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;

import weixin.popular.bean.BaseResult;

public class MessageSendResult extends BaseResult{

	private String type;

	private String msg_id;
	
	private String msg_status;

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getMsg_id() {
		return msg_id;
	}

	public void setMsg_id(String msg_id) {
		this.msg_id = msg_id;
	}

	public String getMsg_status() {
		return msg_status;
	}

	public void setMsg_status(String msg_status) {
		this.msg_status = msg_status;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy