@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) • 354 B
TypeScript
/**
* Enum representing machine detection behavior for the Connect NCCO action.
*/
declare enum MachineDetection {
/**
* Continue with the call if machine detection is triggered.
*/
CONTINUE = "continue",
/**
* Hang up the call if machine detection is triggered.
*/
HANGUP = "hangup"
}
export { MachineDetection };