UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 794 B
import { TimeConditionsPolicyEnum } from './TimeConditionsPolicyEnum'; import { Time } from '../Time'; import { OvhPabxDialplanExtensionConditionTimeWeekDayEnum } from './OvhPabxDialplanExtensionConditionTimeWeekDayEnum'; /** Easy hunting time conditions */ export interface EasyHuntingTimeConditions { /** */ conditionId: number; /** The policy of time condition */ policy: TimeConditionsPolicyEnum; /** 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=EasyHuntingTimeConditions.d.ts.map