@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
33 lines • 867 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @author Javen
* @copyright javendev@126.com
* @description 接收视频消息
*/
const InMsg_1 = require("./InMsg");
class InShortVideoMsg extends InMsg_1.InMsg {
constructor(toUserName, fromUserName, createTime, msgType) {
super(toUserName, fromUserName, createTime, msgType);
}
get getMediaId() {
return this.mediaId;
}
set setMediaId(mediaId) {
this.mediaId = mediaId;
}
get getThumbMediaId() {
return this.thumbMediaId;
}
set setThumbMediaId(thumbMediaId) {
this.thumbMediaId = thumbMediaId;
}
get getMsgId() {
return this.msgId;
}
set setMsgId(msgId) {
this.msgId = msgId;
}
}
exports.InShortVideoMsg = InShortVideoMsg;
//# sourceMappingURL=InShortVideoMsg.js.map