UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 466 B
import { TaskStateEnum } from '../../veeamEnterprise/TaskStateEnum'; /** Operation with the Enterprise Account */ export interface Task { /** Task completion date */ endDate?: string; /** Task name */ name: string; /** Current progress */ progress: number; /** Task creation date */ startDate?: string; /** Current Task state */ state: TaskStateEnum; /** Task id */ taskId: number; } //# sourceMappingURL=Task.d.ts.map