@urixen/ptero-connect
    Preparing search index...

    Type Alias SchedulesList

    type SchedulesList = {
        data: {
            attributes: {
                created_at: string;
                cron: {
                    day_of_month: string;
                    day_of_week: string;
                    hour: string;
                    minute: string;
                };
                id: number;
                is_active: boolean;
                is_processing: boolean;
                last_run_at: string
                | null;
                name: string;
                next_run_at: string;
                relationships: {
                    tasks: {
                        data: {
                            attributes: {
                                action: string;
                                created_at: string;
                                id: number;
                                is_queued: boolean;
                                payload: string;
                                sequence_id: number;
                                time_offset: number;
                                updated_at: string;
                            };
                            object: "schedule_task";
                        }[];
                        object: "list";
                    };
                };
                updated_at: string;
            };
            object: "server_schedule";
        }[];
        object: "list";
    }
    Index

    Properties

    Properties

    data: {
        attributes: {
            created_at: string;
            cron: {
                day_of_month: string;
                day_of_week: string;
                hour: string;
                minute: string;
            };
            id: number;
            is_active: boolean;
            is_processing: boolean;
            last_run_at: string
            | null;
            name: string;
            next_run_at: string;
            relationships: {
                tasks: {
                    data: {
                        attributes: {
                            action: string;
                            created_at: string;
                            id: number;
                            is_queued: boolean;
                            payload: string;
                            sequence_id: number;
                            time_offset: number;
                            updated_at: string;
                        };
                        object: "schedule_task";
                    }[];
                    object: "list";
                };
            };
            updated_at: string;
        };
        object: "server_schedule";
    }[]
    object: "list"