commit | author | age | ||
96fe76 | 1 | // |
L | 2 | // GADRequest+AdString.h |
3 | // Google Mobile Ads SDK | |
4 | // | |
5 | // Copyright 2022 Google LLC. All rights reserved. | |
6 | // | |
7 | ||
8 | #import <GoogleMobileAds/GADRequest.h> | |
9 | ||
10 | /// Ad string request extension. | |
11 | @interface GADRequest (AdString) | |
12 | ||
13 | /// Ad string that represents an ad response. If set, the SDK will render this ad and ignore all | |
14 | /// other targeting information set on this request. | |
15 | @property(nonatomic, copy, nullable) NSString *adString; | |
16 | ||
17 | @end |