@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
18 lines • 485 B
TypeScript
/**
* Represents a phone endpoint, which can be used as a call destination.
*/
export type PhoneEndpoint = {
/**
* Specifies the type of endpoint, which is 'phone' for phone numbers.
*/
type: 'phone';
/**
* The phone number associated with the endpoint.
*/
number: string;
/**
* Provide DTMF digits to send when the call is answered
*/
dtmfAnswer?: string;
} & Record<string, unknown>;
//# sourceMappingURL=PhoneEndpoint.d.ts.map