GADMediatedNativeAd.h 588 B

123456789101112131415161718192021
  1. //
  2. // GADMediatedNativeAd.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2015 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "GADMediatedNativeAdDelegate.h"
  9. /// Base protocol for mediated native ads.
  10. @protocol GADMediatedNativeAd<NSObject>
  11. /// Returns a delegate object that receives state change notifications.
  12. - (id<GADMediatedNativeAdDelegate>)mediatedNativeAdDelegate;
  13. /// Returns a dictionary of asset names and object pairs for assets that are not handled by
  14. /// properties of the GADMediatedNativeAd subclass.
  15. - (NSDictionary *)extraAssets;
  16. @end