import { InterventionTypeEnum } from './InterventionTypeEnum';
import { OperatorEnum } from '../OperatorEnum';
/** Work Planned operation structure */
export interface WorkPlanned {
    /** Begin date, the work planned operation starts at this time */
    dateBegin: string;
    /** End date, the work planned operation finishes at the time */
    dateEnd: string;
    /** List of impacted department codes */
    departments?: string[];
    /** Description of the work planned operation */
    description?: string;
    /** Duration of the work planned operation */
    duration?: string;
    /** Fallback planned for the operation */
    fallback?: boolean;
    /** Fallback operation starts at this time */
    fallbackDateBegin?: string;
    /** Fallback operation ends at this time */
    fallbackDateEnd?: string;
    /** Work Planned operation id */
    id: number;
    /** Impact of the work planned operation */
    impact?: string;
    /** Intervention type */
    interventionType: InterventionTypeEnum;
    /** List of impacted NRA/NRO */
    nras?: string[];
    /** Operator */
    operator: OperatorEnum;
    /** Technology impacted by the work planned operation */
    technology: string;
    /** Zone of the work planned operation */
    zone?: string;
}
//# sourceMappingURL=WorkPlanned.d.ts.map