UNPKG

@tnwx/commons

Version:

TTNWX 微信系开发脚手架之公共模块

29 lines (28 loc) 884 B
import { BaseMsg } from '../BaseMsg'; /** * @author Javen * @copyright javendev@126.com * @description 异步任务回调通知 */ export declare class InBatchJobResult extends BaseMsg { static INFO_TYPE: string; private servicecorpid; private infotype; private timestamp; private authcorpid; private jobid; private jobtype; constructor(serviceCorpId: string, infoType: string, timeStamp: number, authCorpId: string, jobId: string, jobType: string); get serviceCorpId(): string; set serviceCorpId(serviceCorpId: string); get infoType(): string; set infoType(infoType: string); get timeStamp(): number; set timeStamp(timeStamp: number); get authCorpId(): string; set authCorpId(authCorpId: string); get jobId(): string; set jobId(jobId: string); get jobType(): string; set jobType(jobType: string); }