lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADAdLoaderAdTypes.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2015 Google LLC. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9 #import <GoogleMobileAds/GoogleMobileAdsDefines.h>
10
11 typedef NSString *GADAdLoaderAdType NS_TYPED_ENUM;
12
13 /// Use with GADAdLoader to request native custom template ads. To receive ads, the ad loader's
14 /// delegate must conform to the GADCustomNativeAdLoaderDelegate protocol. See GADCustomNativeAd.h.
15 FOUNDATION_EXPORT GADAdLoaderAdType _Nonnull const GADAdLoaderAdTypeCustomNative;
16
17 /// Use with GADAdLoader to request Google Ad Manager banner ads. To receive ads, the ad loader's
18 /// delegate must conform to the GAMBannerAdLoaderDelegate protocol. See GAMBannerView.h.
19 FOUNDATION_EXPORT GADAdLoaderAdType _Nonnull const GADAdLoaderAdTypeGAMBanner;
20
21 /// Use with GADAdLoader to request native ads. To receive ads, the ad loader's delegate must
22 /// conform to the GADNativeAdLoaderDelegate protocol. See GADNativeAd.h.
23 FOUNDATION_EXPORT GADAdLoaderAdType _Nonnull const GADAdLoaderAdTypeNative;