AATImpression

/// An object contains impression level information.
@objc public class AATImpression : NSObject {
    /// Impression banner size
    @objc public let bannerSize: String?

    /// Impression ad network
    @objc public let adNetwork: AATAdNetwork

    /// Impression ad network key
    @objc public let networkKey: String

    /// Is a direct deal impression
    @objc public let isDirectDeal: Bool

    /// Impression price information
    @objc public let priceInfo: AATPriceInfo?

    /// Gets the name of the impression ad network
    /// - Returns: A string represents the name of the ad network
    @objc public func getAdNetworkName() -> String
}

Last updated