// // GADCustomEventNativeAdDelegate.h // Google Mobile Ads SDK // // Copyright 2015 Google LLC. All rights reserved. // #import #import #import /// 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. GAD_DEPRECATED_MSG_ATTRIBUTE("Use GADMediationNativeAdEventDelegate instead.") @protocol GADCustomEventNativeAdDelegate /// Tells the delegate that the custom event ad request failed. - (void)customEventNativeAd:(nonnull id)customEventNativeAd didFailToLoadWithError:(nonnull NSError *)error; /// Tells the delegate that the custom event ad request succeeded and loaded a unified native ad. - (void)customEventNativeAd:(nonnull id)customEventNativeAd didReceiveMediatedUnifiedNativeAd: (nonnull id)mediatedUnifiedNativeAd; @end