UNPKG

@vonage/voice

Version:

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

19 lines (16 loc) 634 B
import { BasicCallDetail } from '../BasicCallDetail.js'; import '../../enums/CallStatus.js'; /** * Represents the response for creating an outbound call, including the conversation UUID and basic call details. * * @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 CreateOutboundCallResponse = { /** * The UUID of the conversation associated with the outbound call. */ conversation_uuid: string; } & Omit<BasicCallDetail, 'conversationUUID'>; export type { CreateOutboundCallResponse };