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

RTBFullscreenRequestConfiguration

class RTBFullscreenRequestConfiguration(
    /**
     * Represents the placement ID on SmartyAd dashboard.
     */
    placementId: Int,

    /**
     * Represents the bundle ID (as represented on SmartyAd dashboard)
     */
    bundleId: String
    
     /**
     * Boolean to force showing the SDK native close button even if the MRAID creative has one
     * If the MRAID creative has close button and ``forceCloseButtonForMraid`` is true, the MRAID creative would have 2 close buttons
     */
    val forceCloseButtonForMraid: Boolean = false
) {
    /**
     * Bid floor price in USD. By default null.
     */
    var bidFloor: Float? = null

    /**
     * Seller's Id, as in sellers.json. By default null.
     */
    var sellerId: String? = null
    
     /**
     * Represents the user targeting for this request. By default null.
     */
    var userTargeting: RTBUserTargeting? = null
}
PreviousRTBFullscreenAdNextRTBBidInfo

Last updated 2 months ago