// // GADMediationServerConfiguration.h // Google Mobile Ads SDK // // Copyright 2018 Google LLC. All rights reserved. // #import #import /// Mediation configuration set by the publisher on the AdMob UI. @interface GADMediationCredentials : NSObject /// The AdMob UI settings. @property(nonatomic, readonly, nonnull) NSDictionary *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 *credentials; @end