@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
27 lines (24 loc) • 788 B
TypeScript
import { VBCEndpoint as VBCEndpoint$1 } from '../../types/Endpoint/VBCEndpoint.js';
/**
* Represents a VBC (Vonage Business Cloud) endpoint for making voice calls.
* @deprecated This class is deprecated. Please update to use the VBCEndpointType type instead.
*/
declare class VBCEndpoint implements VBCEndpoint$1 {
/**
* The type of the endpoint, which is always 'vbc'.
*/
type: 'vbc';
/**
* The VBC extension associated with this endpoint.
*
* @param {string} extension - The VBC extension for the VBC endpoint.
*/
extension: string;
/**
* Create a new VBCEndpoint instance.
*
* @param {string} extension - The VBC extension for the VBC endpoint.
*/
constructor(extension: string);
}
export { VBCEndpoint };