@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
14 lines • 450 B
TypeScript
/**
* Represents a Vonage Business Cloud (VBC) endpoint, which can be used as a call destination.
*/
export type VBCEndpoint = {
/**
* Specifies the type of endpoint, which is 'vbc' for Vonage Business Cloud.
*/
type: 'vbc';
/**
* An optional extension associated with the VBC endpoint. If provided, the call will be directed to this extension.
*/
extension?: string;
};
//# sourceMappingURL=VBCEndpoint.d.ts.map