interface SchedulerJob {
    created?: Moment;
    cron?: string;
    id?: string;
    isActive: boolean;
    lastExecution?: Moment;
    method: string;
    modified?: Moment;
    name: string;
    nextExecution?: Moment;
    presetId?: string;
    url: string;
    user: string;
}

Hierarchy (View Summary)

Properties

created?: Moment
cron?: string
id?: string
isActive: boolean
lastExecution?: Moment
method: string
modified?: Moment
name: string
nextExecution?: Moment
presetId?: string
url: string
user: string