AATRuntimeConfiguration
@objc public class AATRuntimeConfiguration : NSObject {
/// A Bool that indicates whether to the consent is required or not. True by default.
@objc public var consentRequired: Bool
/// An instance of ``AATConsentImplementation``. Could be ``AATManagedConsent``, ``AATSimpleConsent`` or ``AATVendorConsent``
@objc public var consent: AATConsentImplementation?
/// A bool that indicates whether the location is used or not. False by default
@objc public var isUseGeoLocation: Bool
}
@interface AATRuntimeConfiguration : NSObject
/// A Bool that indicates whether to the consent is required or not. True by default.
@property (nonatomic) BOOL consentRequired;
/// An instance of <code>AATConsentImplementation</code>. Could be <code>AATManagedConsent</code>, <code>AATSimpleConsent</code> or <code>AATVendorConsent</code>
@property (nonatomic, strong) AATConsentImplementation * _Nullable consent;
/// A bool that indicates whether the location is used or not. False by default
@property (nonatomic) BOOL isUseGeoLocation;
@end
Last updated