UNPKG

@vonage/voice

Version:

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

26 lines (23 loc) 586 B
import { CallStatus } from '../enums/CallStatus.js'; /** * Represents basic details of a call, including its UUID, conversation UUID, duration, and status. */ type BasicCallDetail = { /** * The UUID of the call. */ uuid: string; /** * The UUID of the conversation associated with the call. */ conversationUUID: string; /** * The duration of the call in a string format. */ duration: string; /** * The status of the call, indicating its current state. */ status: CallStatus; }; export type { BasicCallDetail };