import { PlannedInterventionStatusEnum } from '../PlannedInterventionStatusEnum';
import { PlannedInterventionTypeEnum } from '../PlannedInterventionTypeEnum';
/** Planned intervention on the server */
export interface PlannedIntervention {
    /** Expected end date for this intervention */
    expectedEndDate: string;
    /** ID of the intervention */
    id: number;
    /** Status of the intervention */
    status: PlannedInterventionStatusEnum;
    /** Operation purpose */
    type: PlannedInterventionTypeEnum;
    /** Wanted start date for this intervention */
    wantedStartDate: string;
}
//# sourceMappingURL=PlannedIntervention.d.ts.map