
cn.zkdcloud.component.message.acceptMessage.normalMessage.AcceptVoiceMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weChat Show documentation
Show all versions of weChat Show documentation
we can use it easy to build weChat
The newest version!
package cn.zkdcloud.component.message.acceptMessage.normalMessage;
import cn.zkdcloud.component.message.acceptMessage.AbstractAcceptNormalMessage;
/**
* 语音消息
*/
public class AcceptVoiceMessage extends AbstractAcceptNormalMessage {
/**
* mediaId
*/
private String mediaId;
/**
* 语音格式
*/
private String format;
/**
* 语音识别结果
*/
private String recognition;
public String getMediaId() {
return mediaId;
}
public void setMediaId(String mediaId) {
this.mediaId = mediaId;
}
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
public String getRecognition() {
return recognition;
}
public void setRecognition(String recognition) {
this.recognition = recognition;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy