RTBNativeAdRequestConfiguration

@objc public class RTBNativeAdRequestConfiguration : NSObject {

    /// Represents the bid floor price in USD.
    @objc public var bidFloor: NSNumber?

    @objc public var sellerId: String?

    /// - Parameters:
    ///   - placementId: Represents the placement ID on SmartyAd dashboard.
    ///   - iTunesAppId: Represents the AppId on the publisher Apple developer account.
    @objc public init(placementId: Int, iTunesAppId: String)
}

Last updated