NonIABConsent

/**
 * Possible states of GDPR consent
 */
enum class NonIABConsent {
    /**
     * Unknown - if the user has never set a consent state.
     */
    UNKNOWN,

    /**
     * Consent has been granted by the user.
     */
    OBTAINED,

    /**
     * Consent has been declined by the user.
     */
    WITHHELD
}

Last updated