GDTBaseAdNetworkAdapterProtocol.h 610 B

12345678910111213141516171819202122232425262728
  1. //
  2. // GDTBaseAdNetworkAdapterProtocol.h
  3. // GDTMobApp
  4. //
  5. // Created by royqpwang on 2019/7/25.
  6. // Copyright © 2019 Tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol GDTBaseAdNetworkAdapterProtocol <NSObject>
  10. + (NSString *)adapterVersion;
  11. - (instancetype)initWithAdNetworkConnector:(id)connector
  12. posId:(NSString *)posId
  13. extStr:(NSString *)extStr;
  14. @optional
  15. - (NSInteger)eCPM;
  16. - (NSInteger)priority;
  17. - (NSString *)eCPMLevel;
  18. - (void)cancelLoad;
  19. - (NSInteger)mediationPrice;
  20. - (BOOL)isContractAd;
  21. @end