-
Notifications
You must be signed in to change notification settings - Fork 2
MachineDetectionOptions
Lejla Solak edited this page Feb 9, 2026
·
1 revision
Creates a builder instance used to build a new instance of the MachineDetectionOptions.
none
-
MachineDetectionOptionsBuilder- Instance of the builder.
let machineDetectionOptionsBuilder = MachineDetectionOptions.builder();Getter for the enabled field.
none
-
boolean- Value of theenabledfield indicating whether machine detection is enabled for the call.
let machineDetectionOptions = MachineDetectionOptions.builder().setEnabled(true).build();
let enabled = machineDetectionOptions.enabled;Getter for the detectionTime field.
none
-
number- Value of thedetectionTimefield indicating the duration in seconds for which machine detection will run.
let machineDetectionOptions = MachineDetectionOptions.builder().setEnabled(true).setDetectionTime(5).build();
let detectionTime = machineDetectionOptions.detectionTime;