GfpAdChoicesData

sealed interface GfpAdChoicesData

Sealed interface for ad choices data. Represents different types of ad choices information including privacy and mute feedback.

Inheritors

Types

Link copied to clipboard

Data class for ad mute choices. Contains feedback options for when users mute ads.

Link copied to clipboard
data class OptOut(    val privacyUrl: String,     val adMuteFeedbacks: List<AdMuteFeedback>) : GfpAdChoicesData, PrivacyUrlProvider, AdMuteFeedbacksProvider

Data class for opt-out choices. Combines both privacy URL and ad mute feedback options.

Link copied to clipboard
data class Privacy(val privacyUrl: String) : GfpAdChoicesData, PrivacyUrlProvider

Data class for privacy choices. Contains URL for privacy-related content.