| 123456789101112131415161718192021 |
- //
- // GADMediatedNativeAd.h
- // Google Mobile Ads SDK
- //
- // Copyright 2015 Google Inc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "GADMediatedNativeAdDelegate.h"
- /// Base protocol for mediated native ads.
- @protocol GADMediatedNativeAd<NSObject>
- /// Returns a delegate object that receives state change notifications.
- - (id<GADMediatedNativeAdDelegate>)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
|