@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
14 lines • 363 B
TypeScript
/**
* Enum representing the behavior of machine detection in a call.
*/
export 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"
}
//# sourceMappingURL=MachineDetctionBehavior.d.ts.map