VendorConsentDelegate

interface VendorConsentDelegate {
    /**
     * Gets the consent for given ad network
     */
    fun getConsentForNetwork(network: AdNetwork): NonIABConsent

    /**
     * Gets the consent for AddApptr GmbH as the legal entity holding the Gravite brand. Will only be used if there is no TCF2 consent string available.
     */
    val consentForAddapptr: NonIABConsent
}

Last updated