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)"
    }
}

Last updated