Member Junction
    Preparing search index...

    Schedule row for the Schedules component (includes new scheduling fields)

    interface ScheduleRow {
        Company: string;
        CronExpression: string | null;
        ID: string;
        Integration: string;
        IsActive: boolean | null;
        IsLocked: boolean;
        LastScheduledRunAt: string | null;
        LockedAt: string | null;
        Name: string;
        NextScheduledRunAt: string | null;
        ScheduleEnabled: boolean;
        ScheduleIntervalMinutes: number | null;
        ScheduleType: "Manual" | "Interval" | "Cron";
    }
    Index

    Properties

    Company: string
    CronExpression: string | null
    ID: string
    Integration: string
    IsActive: boolean | null
    IsLocked: boolean
    LastScheduledRunAt: string | null
    LockedAt: string | null
    Name: string
    NextScheduledRunAt: string | null
    ScheduleEnabled: boolean
    ScheduleIntervalMinutes: number | null
    ScheduleType: "Manual" | "Interval" | "Cron"