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
}

Last updated