ISSupersonicAdsConfiguration.h 871 B

123456789101112131415161718192021
  1. //
  2. // Copyright © 2017 IronSource. All rights reserved.
  3. //
  4. @interface ISSupersonicAdsConfiguration : NSObject
  5. @property (nonatomic, assign) NSNumber *useClientSideCallbacks;
  6. @property (nonatomic, strong) NSString *language;
  7. @property (nonatomic, strong) NSString *minimumOfferCommission;
  8. @property (nonatomic, strong) NSDictionary *controllerConfig;
  9. @property (nonatomic, strong) NSString *itemName;
  10. @property (nonatomic, strong) NSString *controllerUrl;
  11. @property (strong) NSNumber *itemCount;
  12. @property (strong) NSNumber *maxVideoLength;
  13. @property (nonatomic, strong) NSString *privateKey;
  14. @property (nonatomic) BOOL debugMode;
  15. @property (nonatomic) NSInteger debugLevel;
  16. + (ISSupersonicAdsConfiguration *)configurations;
  17. @end