@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 667 B
TypeScript
import { OvhPabxDialplanExtensionRuleActionEnum } from './OvhPabxDialplanExtensionRuleActionEnum';
/** Dialplan rule */
export interface OvhPabxDialplanExtensionRule {
/** The action made by the rule */
action: OvhPabxDialplanExtensionRuleActionEnum;
/** The parameter of the chosen action */
actionParam?: string;
/** If true, the rule will be executed only when the result of the conditions is false */
negativeAction: boolean;
/** The position of the rule in the extension (the rules are executed following this order) */
position: number;
/** */
ruleId: number;
}
//# sourceMappingURL=OvhPabxDialplanExtensionRule.d.ts.map