@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
16 lines (14 loc) • 401 B
TypeScript
/**
* Represents the result of updating a call, including the UUID and a message describing the update.
*/
type CallUpdateResult = {
/**
* The universally unique identifier (UUID) associated with the call.
*/
uuid: string;
/**
* A message describing the update or the result of the call update operation.
*/
message: string;
};
export type { CallUpdateResult };