MAAdRevenueDelegate.h 526 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MAAdRevenueDelegate.h
  3. // AppLovinSDK
  4. //
  5. // Created by Andrew Tian on 6/3/21.
  6. //
  7. @class MAAd;
  8. NS_ASSUME_NONNULL_BEGIN
  9. /**
  10. * This protocol defines a delegate to be notified about ad revenue events.
  11. */
  12. @protocol MAAdRevenueDelegate <NSObject>
  13. /**
  14. * The SDK invokes this callback when it detects a revenue event for an ad.
  15. *
  16. * The SDK invokes this callback on the UI thread.
  17. *
  18. * @param ad The ad for which the revenue event was detected.
  19. */
  20. - (void)didPayRevenueForAd:(MAAd *)ad;
  21. @end
  22. NS_ASSUME_NONNULL_END