OnManagedConsentCMPFinished

Overview

Notifies that the used CMP has finished updating consent.

Syntax

OnManagedConsentCMPFinished(state)

state (REQUIRED)

ManagedConsentState Enum that takes the following values:

  • Unknown - No information about consent state.

  • Withheld - Consent has been declined by the user.

  • Custom - Partial consent has been granted by the user - at least some purposes and some vendors were given consent.

  • Obtained - Full consent has been granted by the user.

returns void

Examples

AATKitBinding.OnManagedConsentCMPFinishedDelegate += OnManagedConsentCMPFinished;

public void OnManagedConsentCMPFinished(AATKitBinding.ManagedConsentState state)
{
    Debug.Log("OnManagedConsentCMPFinished state: " + state);
}

Last updated