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
}
typedef SWIFT_ENUM(NSInteger, NonIABConsent, open) {
/// Unknown - if the user has never set a consent state.
NonIABConsentUnknown = 0,
/// Consent has been granted by the user.
NonIABConsentObtained = 1,
/// Consent has been declined by the user.
NonIABConsentWithheld = 2,
};
Last updated