UNPKG

@tnwx/commons

Version:

TTNWX 微信系开发脚手架之公共模块

33 lines 847 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @author Javen * @copyright javendev@126.com * @description 接收视频消息 */ const InMsg_1 = require("./InMsg"); class InVideoMsg 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.InVideoMsg = InVideoMsg; //# sourceMappingURL=InVideoMsg.js.map