interface ScheduleTask {
    attributes: {
        action: string;
        created_at: string;
        id: number;
        is_processing: boolean;
        payload: string;
        sequence_id: number;
        time_offset: string;
        updated_at: string;
    };
    object: "schedule_task";
}

Properties

Properties

attributes: {
    action: string;
    created_at: string;
    id: number;
    is_processing: boolean;
    payload: string;
    sequence_id: number;
    time_offset: string;
    updated_at: string;
}

Type declaration

  • action: string
  • created_at: string
  • id: number
  • is_processing: boolean
  • payload: string
  • sequence_id: number
  • time_offset: string
  • updated_at: string
object: "schedule_task"

Generated using TypeDoc