@tnwx/commons
Version:
TTNWX 微信系开发脚手架之公共模块
28 lines (27 loc) • 845 B
TypeScript
import { BaseMsg } from '../BaseMsg';
/**
* @author Javen
* @copyright javendev@126.com
* @description 企业开放平台授权通知事件
*/
export declare class InAuthEvent extends BaseMsg {
static CREATE_AUTH: string;
static CHANGE_AUTH: string;
static CANCEL_AUTH: string;
private suiteid;
private authcode;
private infotype;
private timestamp;
private authcorpid;
constructor(suiteId: string, infoType: string, timeStamp: number, authCode?: string, authCorpId?: string);
get suiteId(): string;
set suiteId(suiteId: string);
get infoType(): string;
set infoType(infoType: string);
get timeStamp(): number;
set timeStamp(timeStamp: number);
get authCode(): string;
set authCode(authCode: string);
get authCorpId(): string;
set authCorpId(authCorpId: string);
}