@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
20 lines (18 loc) • 518 B
text/typescript
/**
* Represents the response for updating a call, including a message and the UUID of the call.
*
* @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 UpdateCallResponse = {
/**
* A message associated with the call update response.
*/
message: string;
/**
* The UUID of the call that was updated.
*/
uuid: string;
};
export type { UpdateCallResponse };