AATManagedConsentState

@objc public enum AATManagedConsentState : Int {
    /// No information about consent state.
    case unknown

    /// Consent has been declined by the user.
    case withheld

    /// Partial consent has been granted by the user - at least some purposes and some vendors were given consent.
    case custom

    /// Full consent has been granted by the user.
    case obtained
}

Last updated