RTBSDK iOS Integration
Release Notes
  • Start
    • Setup
      • Cocoapods
      • Swift Package Manager
      • Configure RTBSDK
    • Consent
  • Formats
    • Banners
    • Fullscreen (Interstitial)
    • Native Ads
    • Advanced
      • Separate Loading and Rendering of Banner Ads
  • Other
    • AdMob Custom Events
    • AppLovin Custom Adapter
    • Reference
      • Classes
        • RTBSDKManager
        • RTBBannerView
        • RTBBannerAdProvider
        • RTBBannerBid
        • RTBBannerRequestConfiguration
        • RTBBannerSize
        • RTBFullscreenAd
        • RTBFullscreenRequestConfiguration
        • RTBNativeAdLoader
        • RTBNativeAd
        • RTBNativeAdRequestConfiguration
        • RTBUserTargeting
        • RTBBidInfo
      • Protocols
        • RTBBannerViewDelegate
        • RTBBannerAdLoadDelegate
        • RTBBannerAdInteractionDelegate
        • RTBFullscreenDelegate
        • RTBNativeAdLoaderDelegate
        • RTBNativeAdInteractionDelegate
      • Enumerations
        • RTBLogLevel
        • RTBGender
  • Sample App
Powered by GitBook
On this page
  1. Other
  2. Reference
  3. Classes

RTBBannerRequestConfiguration

@objc
public class RTBBannerRequestConfiguration: 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 1 year ago