UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

32 lines 950 B
import { OperationStatusEnum } from './OperationStatusEnum'; import { OperationTypeEnum } from './OperationTypeEnum'; /** Tasks associated to domain */ 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; /** Domain of the task */ domain?: string; /** Done date of the task */ doneDate?: string; /** Function of the task */ function: string; /** Id of the task */ id: number; /** Last update date of the task */ lastUpdate: string; /** Status of the task */ status: OperationStatusEnum; /** Todo date of the task */ todoDate: string; /** type of the task */ type: OperationTypeEnum; } //# sourceMappingURL=Task.d.ts.map