RTBFullscreenRequestConfiguration

@objc
public class RTBFullscreenRequestConfiguration: NSObject {
    ///  Represents the placement ID on SmartyAd dashboard.
    var placementId: Int

    /// Represents the AppId on the publisher Apple developer account.
    var iTunesAppId: String

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

    @objc
    public var sellerId: String? = nil

    /// - 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) {
        self.placementId = placementId
        self.iTunesAppId = iTunesAppId
    }
}

Last updated