ManagedConsentState
/**
* Possible states of consent given by the user.
*/
enum class ManagedConsentState {
/**
* No information about consent state.
*/
UNKNOWN,
/**
* Consent has been declined by the user.
*/
WITHHELD,
/**
* Partial consent has been granted by the user - at least some purposes and some vendors were given consent.
*/
CUSTOM,
/**
* Full consent has been granted by the user.
*/
OBTAINED
}
Last updated