UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 333 B
import { TaskStatusEnum } from './TaskStatusEnum'; /** Tasks */ export interface Task { /** Domain name of the task */ domain: string; /** Function of the task */ function: string; /** Id of the task */ id: number; /** Status of the task */ status: TaskStatusEnum; } //# sourceMappingURL=Task.d.ts.map