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

RTBBidInfo

/**
 * Provides information about the bid.
 * @param priceCPM BidPrice of the Ad in USD
 * @param bidder Name of the bidder
 * @param creativeId Id of the creative
 * @param campaignId Id of the campaign
 */
@Suppress("MemberVisibilityCanBePrivate")
open class RTBBidInfo(val priceCPM: Float, val bidder: String, val creativeId: String?, val campaignId: String?): Serializable {

    override fun toString(): String {
        return "RTBBidInfo(priceCPM=$priceCPM, bidder='$bidder', creativeId=$creativeId, campaignId=$campaignId)"
    }
}
PreviousRTBFullscreenRequestConfigurationNextRTBNativeAd

Last updated 7 months ago