AATBannerConfiguration

@objc public class AATBannerConfiguration: NSObject {

    /// A Bool that indicates whether the placement should count ad spaces manually. false by default
    @objc public var isManualAdSpaceCounting = false

    /// Defines how many ads can be loaded in parallel. Higher numbers will result in faster ad delivery but also in more CPU and network traffic consumption
    /// - Parameter numberOfWorkers: represents the number of parallel loaded ads
    @objc public func setNumberOfWorkers(_ numberOfWorkers: Int)
}

Last updated