@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 368 B
TypeScript
import { TypeEnum } from './incident/TypeEnum';
/** OVHcloud Connect Incident */
export interface Incident {
/** Ending date of the incident */
endDate?: string;
/** Incident reference */
id: number;
/** Starting date of the incident */
startDate: string;
/** Type of incident */
type: TypeEnum;
}
//# sourceMappingURL=Incident.d.ts.map