@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) • 341 B
TypeScript
/**
* Enum representing the behavior of machine detection in a call.
*/
declare enum MachineDetectionBehavior {
/**
* Continue the call even if a machine is detected.
*/
CONTINUE = "continue",
/**
* Hang up the call if a machine is detected.
*/
HANGUP = "hangup"
}
export { MachineDetectionBehavior };