class RTBNativeAdRequestConfiguration(
/**
* 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
}