GADResponseInfo
@interface GADResponseInfo : NSObject
Information about a response to an ad request.
-
Unique identifier of the ad response.
Declaration
Swift
var responseIdentifier: String? { get }
Objective-C
@property (nonatomic, readonly, nullable) NSString *responseIdentifier;
-
A class name that identifies the ad network that returned the ad. Nil if no ad was returned.
Declaration
Swift
var adNetworkClassName: String? { get }
Objective-C
@property (nonatomic, readonly, nullable) NSString *adNetworkClassName;
-
Array of metadata for each ad network included in the response.
Declaration
Swift
var adNetworkInfoArray: [GADAdNetworkResponseInfo] { get }
Objective-C
@property (nonatomic, readonly, nonnull) NSArray<GADAdNetworkResponseInfo *> *adNetworkInfoArray;
-
JSON-safe dictionary representation of the response info.
Declaration
Swift
var dictionaryRepresentation: [String : Any] { get }
Objective-C
@property (nonatomic, readonly, nonnull) NSDictionary<NSString *, id> *dictionaryRepresentation;