UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

28 lines 825 B
import { TaskFunctionEnum } from '../TaskFunctionEnum'; import { TaskStatusEnum } from '../TaskStatusEnum'; /** DNS zone task */ export interface Task { /** Can accelerate the task */ canAccelerate: boolean; /** Can cancel the task */ canCancel: boolean; /** Can relaunch the task */ canRelaunch: boolean; /** Comment about the task */ comment?: string; /** Creation date of the task */ creationDate: string; /** Done date of the task */ doneDate?: string; /** Function of the task */ function: TaskFunctionEnum; /** Id of the task */ id: number; /** Last update date of the task */ lastUpdate?: string; /** Status of the task */ status: TaskStatusEnum; /** Todo date of the task */ todoDate: string; } //# sourceMappingURL=Task.d.ts.map