// // GADCustomEventNativeAdDelegate.h // Google Mobile Ads SDK // // Copyright 2015 Google Inc. All rights reserved. // #import #import "GADCustomEventNativeAd.h" #import "GADMediatedNativeAd.h" /// The delegate of the GADCustomEventNativeAd object must adopt the GADCustomEventNativeAdDelegate /// protocol. Methods in this protocol are used for native ad's custom event communication with the /// Google Mobile Ads SDK. @protocol GADCustomEventNativeAdDelegate /// Tells the delegate that the custom event ad request succeeded and loaded a native ad. - (void)customEventNativeAd:(id)customEventNativeAd didReceiveMediatedNativeAd:(id)mediatedNativeAd; /// Tells the delegate that the custom event ad request failed. - (void)customEventNativeAd:(id)customEventNativeAd didFailToLoadWithError:(NSError *)error; @end