@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) • 410 B
TypeScript
/**
* Represents a Vonage Business Cloud (VBC) endpoint, which can be used as a call destination.
*/
type VBCEndpoint = {
/**
* Specifies the type of endpoint, which is 'vbc' for Vonage Business Cloud.
*/
type: 'vbc';
/**
* The extension associated with the VBC endpoint. The call will be directed to this extension.
*/
extension: string;
};
export type { VBCEndpoint };