RTBBannerAdLoadDelegate

@objc public protocol RTBBannerAdLoadDelegate {

    /**
     * Tells the delegate that an ad request successfully received an ad.
     * @param bannerBid Information about the bid.
     */
    func bannerAdDidReceiveAd(bannerBid: RTBBannerBid)

    /**
     * Tells the delegate that an ad request failed.
     */
    func bannerAdDidFailToReceiveAd(errorMessage: String)
}

Last updated