@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
39 lines • 927 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @author Javen
* @copyright javendev@126.com
* @description 接收链接消息
*/
const InMsg_1 = require("./InMsg");
class InLinkMsg extends InMsg_1.InMsg {
constructor(toUserName, fromUserName, createTime, msgType) {
super(toUserName, fromUserName, createTime, msgType);
}
get getTitle() {
return this.title;
}
set setTitle(title) {
this.title = title;
}
get getDescription() {
return this.description;
}
set setDescription(description) {
this.description = description;
}
get getUrl() {
return this.url;
}
set setUrl(url) {
this.url = url;
}
get getMsgId() {
return this.msgId;
}
set setMsgId(msgId) {
this.msgId = msgId;
}
}
exports.InLinkMsg = InLinkMsg;
//# sourceMappingURL=InLinkMsg.js.map