@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) • 636 B
text/typescript
import { BasicCallDetail } from '../BasicCallDetail.mjs';
import '../../enums/CallStatus.mjs';
/**
* 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 };