interface RTBNativeAdLoadDelegate {
/**
* Tells the delegate that an ad request successfully received an ad.
*
* @param bidInfo Information about the bid.
*/
fun nativeAdDidReceiveAd(nativeAd: RTBNativeAd, bidInfo: RTBBidInfo, networkName: String)
/**
* Tells the delegate that an ad request failed.
*/
fun nativeAdDidFailToReceiveAd(errorMessage: String, networkName: String)
}