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