import { Time } from '../Time';
import { OvhPabxDialplanExtensionConditionTimeWeekDayEnum } from './OvhPabxDialplanExtensionConditionTimeWeekDayEnum';
/** Time condition */
export interface OvhPabxDialplanExtensionConditionTime {
    /**  */
    conditionId: number;
    /** The time of the day when the extension will start to be executed */
    timeFrom: Time;
    /** The time of the day when the extension will stop to be executed */
    timeTo: Time;
    /** The day of the week when the extension will be executed */
    weekDay: OvhPabxDialplanExtensionConditionTimeWeekDayEnum;
}
//# sourceMappingURL=OvhPabxDialplanExtensionConditionTime.d.ts.map