@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
23 lines • 708 B
TypeScript
import { CallStatus } from '../enums';
/**
* Represents the result of a call, including the UUID, status, direction (inbound or outbound), and conversation UUID.
*/
export type CallResult = {
/**
* The universally unique identifier (UUID) associated with the call.
*/
uuid: string;
/**
* The status of the call, indicating its current state or outcome.
*/
status: CallStatus;
/**
* The direction of the call, specifying whether it is inbound or outbound.
*/
direction: 'inbound' | 'outbound';
/**
* The UUID associated with the conversation related to the call.
*/
conversationUUID: string;
};
//# sourceMappingURL=CallResult.d.ts.map