123456789101112131415161718192021 |
- //
- // Copyright © 2017 IronSource. All rights reserved.
- //
- @interface ISSupersonicAdsConfiguration : NSObject
- @property (nonatomic, assign) NSNumber *useClientSideCallbacks;
- @property (nonatomic, strong) NSString *language;
- @property (nonatomic, strong) NSString *minimumOfferCommission;
- @property (nonatomic, strong) NSDictionary *controllerConfig;
- @property (nonatomic, strong) NSString *itemName;
- @property (nonatomic, strong) NSString *controllerUrl;
- @property (strong) NSNumber *itemCount;
- @property (strong) NSNumber *maxVideoLength;
- @property (nonatomic, strong) NSString *privateKey;
- @property (nonatomic) BOOL debugMode;
- @property (nonatomic) NSInteger debugLevel;
- + (ISSupersonicAdsConfiguration *)configurations;
- @end
|