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 };