lpw
2 days ago 1e5242aa56dd1c52c537335ee56d7127d09b24de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  GADRequest+AdString.h
//  Google Mobile Ads SDK
//
//  Copyright 2022 Google LLC. All rights reserved.
//
 
#import <GoogleMobileAds/GADRequest.h>
 
/// Ad string request extension.
@interface GADRequest (AdString)
 
/// Deprecated. Use each ad format class's loadWithAdResponseString: instead.
///
/// Ad string that represents an ad response. If set, the SDK will render this ad and ignore all
/// other targeting information set on this request.
@property(nonatomic, copy, nullable) NSString *adString GAD_DEPRECATED_MSG_ATTRIBUTE(
    "Use each ad format class's loadWithAdResponseString: instead.");
 
@end