interface RTBNativeAdInteractionDelegate {
/**
* Tells the delegate that a click has been recorded for the ad.
*/
fun nativeAdDidRecordClick(nativeAd: RTBNativeAd, networkName: String)
/**
* Tells the delegate that ad has opened external browser
*/
fun nativeAdDidPauseForAd(nativeAd: RTBNativeAd, networkName: String)
/**
* Tells the delegate that Ad has been dismissed
*/
fun nativeAdDidResumeAfterAd(nativeAd: RTBNativeAd, networkName: String)
}