NonIABConsent

@objc public enum NonIABConsent : Int {

    /// Unknown - if the user has never set a consent state.
    case unknown

    /// Consent has been granted by the user.
    case obtained

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

Last updated