@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
24 lines • 811 B
TypeScript
import { VBCEndpoint as VBCEndpointType } from '../../types/Endpoint/VBCEndpoint';
/**
* Represents a VBC (Vonage Business Cloud) endpoint for making voice calls.
* @deprecated This class is deprecated. Please update to use the VBCEndpointType type instead.
*/
export declare class VBCEndpoint implements VBCEndpointType {
/**
* 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);
}
//# sourceMappingURL=VBCEndpoint.d.ts.map