MASignalCollectionParameters.h 505 B

1234567891011121314151617181920212223242526
  1. //
  2. // MASignalCollectionParameters.h
  3. // AppLovinSDK
  4. //
  5. // Created by Thomas So on 8/27/18.
  6. //
  7. #import <AppLovinSDK/MAAdapterParameters.h>
  8. @class MAAdFormat;
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. * This protocol contains parameters passed to a mediation adapter to load the signal.
  12. */
  13. @protocol MASignalCollectionParameters <MAAdapterParameters>
  14. /**
  15. * The ad format we are currently collecting the signal for.
  16. */
  17. @property (nonatomic, strong, readonly) MAAdFormat *adFormat;
  18. @end
  19. NS_ASSUME_NONNULL_END