Type Alias CronUpdateData

CronUpdateData: Partial<
    OmitStrict<
        CronJobEntity,
        "id"
        | "cron"
        | "active"
        | "errorMessage"
        | "lastRun",
    >,
>

Data that can be used to update a cron job.