// // GADMediatedNativeAd.h // Google Mobile Ads SDK // // Copyright 2015 Google Inc. All rights reserved. // #import #import "GADMediatedNativeAdDelegate.h" /// Base protocol for mediated native ads. @protocol GADMediatedNativeAd /// Returns a delegate object that receives state change notifications. - (id)mediatedNativeAdDelegate; /// Returns a dictionary of asset names and object pairs for assets that are not handled by /// properties of the GADMediatedNativeAd subclass. - (NSDictionary *)extraAssets; @end