Package 

Class InteractionsOptions


  • 
    public final class InteractionsOptions
    
                        

    Configuration options for granular control over AutocaptureOption.FRUSTRATION_INTERACTIONS tracking.

    Example usage:

    val config = Configuration(
        apiKey = "YOUR_API_KEY",
        context = application,
        autocapture = setOf(AutocaptureOption.FRUSTRATION_INTERACTIONS),
        interactionsOptions = InteractionsOptions(
            rageClick = RageClickOptions(enabled = true),
            deadClick = DeadClickOptions(enabled = false)
        )
    )