lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
commit | author | age
96fe76 1 //
L 2 //  GAMRequest.h
3 //  Google Mobile Ads SDK
4 //
5 //  Copyright 2014 Google LLC. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9 #import <GoogleMobileAds/GADRequest.h>
10
11 /// Specifies optional parameters for ad requests.
12 @interface GAMRequest : GADRequest
13
14 /// Publisher provided user ID.
15 @property(nonatomic, copy, nullable) NSString *publisherProvidedID;
16
17 /// Array of strings used to exclude specified categories in ad results.
18 @property(nonatomic, copy, nullable) NSArray<NSString *> *categoryExclusions;
19
20 /// Key-value pairs used for custom targeting.
21 @property(nonatomic, copy, nullable) NSDictionary<NSString *, NSString *> *customTargeting;
22
23 @end