mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
19 lines
522 B
TypeScript
19 lines
522 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { JobStatus } from './JobStatus';
|
|
import type { WatcherTaskMeta } from './WatcherTaskMeta';
|
|
export type WatcherTaskStatusResponse = {
|
|
task_name: string;
|
|
task_id: string;
|
|
status: JobStatus;
|
|
created_at: string;
|
|
enqueued_at: (string | null);
|
|
started_at: (string | null);
|
|
ended_at: (string | null);
|
|
task_type: string;
|
|
meta: WatcherTaskMeta;
|
|
};
|
|
|