UNPKG

@vonage/voice

Version:

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

11 lines 711 B
import { EarmuffCallParameters, HangupCallParameters, MuteCallParameters, TransferCallParameters, UnearmuffCallParameters, UnmuteCallParameters } from '../Parameters'; /** * Represents the parameters for modifying a call, including actions like * earmuff, hangup, mute, transfer, unearmuff, and unmute. * * @remarks * Vonage API's will return information using `snake_case`. This represents the * pure response before the client will transform the keys into `camelCase`. */ export type ModifyCallRequestParameters = EarmuffCallParameters | HangupCallParameters | MuteCallParameters | TransferCallParameters | UnearmuffCallParameters | UnmuteCallParameters; //# sourceMappingURL=ModifyCallRequest.d.ts.map