lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GADAdFormat.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2018-2022 Google LLC. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9 #import <GoogleMobileAds/GoogleMobileAdsDefines.h>
10
11 /// Requested ad format.
12 typedef NS_ENUM(NSInteger, GADAdFormat) {
13   GADAdFormatBanner = 0,                ///< Banner.
14   GADAdFormatInterstitial = 1,          ///< Interstitial.
15   GADAdFormatRewarded = 2,              ///< Rewarded.
16   GADAdFormatNative = 3,                ///< Native.
17   GADAdFormatRewardedInterstitial = 4,  ///< Rewarded interstitial.
18   GADAdFormatAppOpen = 6,  ///< App open.
19 };