UNPKG

@vonage/voice

Version:

The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.

13 lines (10 loc) 427 B
import { PlayDTMFParameters } from '../Parameters/PlayDTMFParameters.js'; /** * Represents the parameters for playing DTMF (Dual-Tone Multi-Frequency) tones during a call. * * @remarks * Vonage API's will return information using `snake_case`. This represents the * pure response before the client will transform the keys into `camelCase`. */ type PlayDTMFRequest = PlayDTMFParameters; export type { PlayDTMFRequest };