UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 770 B
/** IVR Menu */ export interface OvhPabxMenu { /** The id of the OvhPabxSound played to greet */ greetSound?: number; /** The text to speech sound played to greet */ greetSoundTts?: number; /** The timeout in milliseconds before considering the DTMF entry as done */ interDigitTimeout: number; /** The id of the OvhPabxSound played when the caller uses an invalid DTMF */ invalidSound?: number; /** The text to speech sound played when the caller uses an invalid DTMF */ invalidSoundTts?: number; /** */ menuId: number; /** The name of the menu */ name: string; /** The timeout in milliseconds before ending the menu when no DTMF is received */ timeout: number; } //# sourceMappingURL=OvhPabxMenu.d.ts.map