@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
14 lines • 419 B
TypeScript
/**
* Represents the result of updating a call, including the UUID and a message describing the update.
*/
export 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;
};
//# sourceMappingURL=CallUpdateResult.d.ts.map