/** * @description 审核事件推送 */ import { InEventMsg } from '../event/InEventMsg'; export declare class InCardPassCheckEvent extends InEventMsg { static EVENT_PASS: string; static EVENT_NOT_PASS: string; /** * 卡券ID */ private cardId; /** * 审核不通过原因 */ private refuseReason; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getCardId(): string; set setCardId(cardId: string); get getRefuseReason(): string; set setRefuseReason(refuseReason: string); }