UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

23 lines 584 B
import { OperatorTypeEnum } from './OperatorTypeEnum'; /** Detected incident */ export interface Incident { /** */ comment: string; /** Estimated start date */ creationDate: string; /** Department list */ departments: string[]; /** Estimated end date */ endDate?: string; /** ID of the incident */ id: number; /** NRA list */ nra: string[]; /** Operator */ operators: OperatorTypeEnum[]; /** Task ID on travaux.ovh.com */ taskId?: number; /** */ taskReference?: string; } //# sourceMappingURL=Incident.d.ts.map