lpw
2024-06-24 96fe7669fe8da0110590467e2e95ad88c0149112
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
//  GADMediationServerConfiguration.h
//  Google Mobile Ads SDK
//
//  Copyright 2018 Google LLC. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <GoogleMobileAds/GADAdFormat.h>
 
/// Mediation configuration set by the publisher on the AdMob UI.
@interface GADMediationCredentials : NSObject
 
/// The AdMob UI settings.
@property(nonatomic, readonly, nonnull) NSDictionary<NSString *, id> *settings;
 
/// The ad format associated with the credentials.
@property(nonatomic, readonly) GADAdFormat format;
 
@end
 
/// Third party SDK configuration.
@interface GADMediationServerConfiguration : NSObject
 
/// Array of mediation configurations set by the publisher on the AdMob UI. Each configuration is a
/// possible credential dictionary that the Google Mobile Ads SDK may provide at ad request time.
@property(nonatomic, readonly, nonnull) NSArray<GADMediationCredentials *> *credentials;
 
@end