@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
15 lines (14 loc) • 552 B
TypeScript
import { EventInMsg } from './EventInMsg';
export declare class InTemplateMsgEvent extends EventInMsg {
static EVENT: string;
static EVENT_INTEMPLATEMSG_STATUS_SUCCESS: string;
static EVENT_INTEMPLATEMSG_STATUS_BLOCK: string;
static EVENT_INTEMPLATEMSG_STATUS_FAILED: string;
private msgId;
private status;
constructor(toUserName: string, fromUserName: string, createTime: number, event: string);
get getMsgId(): string;
set setMsgId(msgId: string);
get getStatus(): string;
set setStatus(status: string);
}