commit | author | age
|
96fe76
|
1 |
// |
L |
2 |
// GADMultipleAdsAdLoaderOptions.h |
|
3 |
// Google Mobile Ads SDK |
|
4 |
// |
|
5 |
// Copyright 2017 Google LLC. All rights reserved. |
|
6 |
// |
|
7 |
|
|
8 |
#import <GoogleMobileAds/GADAdLoader.h> |
|
9 |
|
|
10 |
/// Ad loader options for requesting multiple ads. Requesting multiple ads in a single request is |
|
11 |
/// currently only available for native app install ads and native content ads. |
|
12 |
@interface GADMultipleAdsAdLoaderOptions : GADAdLoaderOptions |
|
13 |
|
|
14 |
/// Number of ads the GADAdLoader should attempt to return for the request. By default, numberOfAds |
|
15 |
/// is one. Requests are invalid and will fail if numberOfAds is less than one. If numberOfAds |
|
16 |
/// exceeds the maximum limit (5), only the maximum number of ads are requested. |
|
17 |
/// |
|
18 |
/// The ad loader makes at least one and up to numberOfAds calls to the "ad received" and |
|
19 |
/// -didFailToReceiveAdWithError: methods found in GADAdLoaderDelegate and its extensions, followed |
|
20 |
/// by a single call to -adLoaderDidFinishLoading: once loading is finished. |
|
21 |
@property(nonatomic) NSInteger numberOfAds; |
|
22 |
|
|
23 |
@end |