@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 517 B
TypeScript
import { OvhPabxIvrMenuEntryActionEnum } from './OvhPabxIvrMenuEntryActionEnum';
/** IVR menu entry */
export interface OvhPabxMenuEntry {
/** The action triggered by the DTMF */
action: OvhPabxIvrMenuEntryActionEnum;
/** The additionnal parameter of the action */
actionParam: string;
/** The DTMF that triggers the action */
dtmf: string;
/** */
entryId: number;
/** The position of the entry in the menu */
position: number;
}
//# sourceMappingURL=OvhPabxMenuEntry.d.ts.map