UNPKG

liveperson-functions-cli

Version:
16 lines (15 loc) 306 B
/** * Structure of the lambda * @export * @interface ISchedule */ export interface ISchedule { createdBy: string; cronExpression: string; didLastExecutionFail: boolean; isActive: boolean; lambdaUUID: string; lastExecution: string; nextExecution: string; uuid: string; }