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