interface Schedule {
    attributes: {
        created_at: string;
        cron: CronSchedule;
        id: number;
        is_active: boolean;
        is_processing: boolean;
        last_run_at: null | string;
        name: string;
        next_run_at: null | string;
        updated_at: string;
    };
    object: "schedule";
}

Properties

Properties

attributes: {
    created_at: string;
    cron: CronSchedule;
    id: number;
    is_active: boolean;
    is_processing: boolean;
    last_run_at: null | string;
    name: string;
    next_run_at: null | string;
    updated_at: string;
}

Type declaration

  • created_at: string
  • cron: CronSchedule
  • id: number
  • is_active: boolean
  • is_processing: boolean
  • last_run_at: null | string
  • name: string
  • next_run_at: null | string
  • updated_at: string
object: "schedule"

Generated using TypeDoc