Represents the preferences related to the user's consent for various types of data usage, including targeted advertising, analytics, and performance tracking.

interface DataPreferences {
    consentForAnalytics?: boolean;
    consentForPerformanceTracking?: boolean;
    consentForTargetedAds?: boolean;
}

Properties

consentForAnalytics?: boolean

User consent to collect and use data for analytics and insights.

consentForPerformanceTracking?: boolean

User consent to track data for enhancing app or service performance.

consentForTargetedAds?: boolean

User consent to use their data for targeted advertising purposes.