UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 787 B
import { SchedulerCategoryEnum } from './SchedulerCategoryEnum'; import { OvhPabxDialplanExtensionConditionScreenListTypeEnum } from './OvhPabxDialplanExtensionConditionScreenListTypeEnum'; /** Dialplan extension */ export interface OvhPabxDialplanExtension { /** True if the extension is enabled */ enabled: boolean; /** */ extensionId: number; /** The position of the extension in the dialplan (the extensions are executed following this order) */ position: number; /** Additionnal conditions are used from this chosen scheduler category */ schedulerCategory?: SchedulerCategoryEnum; /** The type of the screenlist */ screenListType?: OvhPabxDialplanExtensionConditionScreenListTypeEnum; } //# sourceMappingURL=OvhPabxDialplanExtension.d.ts.map