RTBBannerRequestConfiguration
class RTBBannerRequestConfiguration(
/**
* Represents the placement ID on SmartyAd dashboard.
*/
placementId: Int,
/**
* Represents the bundle ID (as represented on SmartyAd dashboard)
*/
bundleId: String
) {
/**
* 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