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