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

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

import java.util.HashMap;
import java.util.Map;

public class MpvideoPreview extends Preview{

	private Map mpvideo = new HashMap();

	public MpvideoPreview(){

	}
	public MpvideoPreview(String media_id) {
		super();
		this.setMsgtype("mpvideo");
		mpvideo.put("media_id", media_id);
	}

	public Map getMpvideo() {
		return mpvideo;
	}

	public void setMpvideo(Map mpvideo) {
		this.mpvideo = mpvideo;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy