import { OvhPabxDialplanExtensionConditionScreenListTypeEnum } from './OvhPabxDialplanExtensionConditionScreenListTypeEnum';
import { SchedulerCategoryEnum } from './SchedulerCategoryEnum';
/** 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