@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
31 lines (30 loc) • 969 B
TypeScript
/**
* @author Javen
* @copyright javendev@126.com
* @description 群发结果
*/
import { EventInMsg } from './EventInMsg';
export declare class InMassEvent extends EventInMsg {
static EVENT: string;
static EVENT_INMASS_STATUS_SENDSUCCESS: string;
static EVENT_INMASS_STATUS_SENDFAIL: string;
private msgId;
private status;
private totalCount;
private filterCount;
private sentCount;
private errorCount;
constructor(toUserName: string, fromUserName: string, createTime: number, event: string);
get getMsgId(): string;
set setMsgId(msgId: string);
get getStatus(): string;
set setStatus(status: string);
get getTotalCount(): string;
set setTotalCount(totalCount: string);
get getFilterCount(): string;
set setFilterCount(filterCount: string);
get getSentCount(): string;
set setSentCount(sentCount: string);
get getErrorCount(): string;
set setErrorCount(errorCount: string);
}