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
}
typedef SWIFT_ENUM(NSInteger, AATManagedConsentState, open) {
/// No information about consent state.
AATManagedConsentStateUnknown = 0,
/// Consent has been declined by the user.
AATManagedConsentStateWithheld = 1,
/// Partial consent has been granted by the user - at least some purposes and some vendors were given consent.
AATManagedConsentStateCustom = 2,
/// Full consent has been granted by the user.
AATManagedConsentStateObtained = 3,
};
Last updated