/** * 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 };