weixin.popular.bean.message.preview.VoicePreview 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.
The newest version!
package weixin.popular.bean.message.preview;
import java.util.HashMap;
import java.util.Map;
public class VoicePreview extends Preview{
private Map voice = new HashMap();
public VoicePreview(){
}
public VoicePreview(String media_id) {
super();
this.setMsgtype("voice");
voice.put("media_id", media_id);
}
public Map getVoice() {
return voice;
}
public void setVoice(Map voice) {
this.voice = voice;
}
}