SimpleConsent

/**
 * Allows to set the status of Non-IAB consent. Will also read the IAB consent string from SharedPreferences if available.
 */
class SimpleConsent
/**
 * Creates the [SimpleConsent] instance.
 *
 * @param nonIABConsent The status of GDPR consent for non-IAB partners.
 */
(val nonIABConsent: NonIABConsent) : ConsentImplementation() {
}

Last updated