
com.jeecg.dingtalk.api.message.vo.VoiceMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin4j Show documentation
Show all versions of weixin4j Show documentation
微信和钉钉开发SDK,主要提供微信、企业微信、钉钉的JAVA封装,降低集成难度,让API变简单
The newest version!
package com.jeecg.dingtalk.api.message.vo;
import com.alibaba.fastjson.JSONObject;
import com.jeecg.dingtalk.api.core.util.MessageType;
/**
* 钉钉语音消息
*
* @author sunjianlei
*/
public class VoiceMessage extends SuperMessage {
private JSONObject voice = new JSONObject();
/**
* 钉钉语音消息
*
* @param media_id 媒体文件ID。可以通过上传媒体文件接口获取。
* @param duration 音频时长,正整数,小于60
*/
public VoiceMessage(String media_id, int duration) {
super(MessageType.VOICE);
this.voice.put("media_id", media_id);
this.voice.put("duration", duration);
}
public JSONObject getVoice() {
return this.voice;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy