AATKitRuntimeConfiguration

/**
 * Allows to change settings for AATKit at runtime.
 */
class AATKitRuntimeConfiguration {

    /**
     * Sets if the GDPR consent is required (if the user falls under GDPR jurisdiction). True by default.
     */
    var isConsentRequired = true

    /**
     * Sets the detailed consent for GDPR.
     */
    var consent: Consent? = null

    /**
     * Sets if geo data (if it is available) should be sent. Disabled by default.
     */
    var isUseGeoLocation = false
}

Last updated