interface RTBBannerAdInteractionDelegate {
/**
* Tells the delegate that a click has been recorded for the ad.
*/
fun bannerAdDidRecordClick()
/**
* Tells the delegate that ad has opened external browser.
*/
fun bannerAdDidPauseForAd()
/**
* Tells the delegate that Ad has been dismissed.
*/
fun bannerAdDidResumeAfterAd()
/**
* Tells the delegate that an ad rendering failed.
*/
fun bannerAdDidFailToRender(error: String)
}