MAAdReviewDelegate.h 811 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MAAdReviewDelegate.h
  3. // AppLovinSDK
  4. //
  5. // Created by Nana Amoah on 3/29/22.
  6. //
  7. @class MAAd;
  8. NS_ASSUME_NONNULL_BEGIN
  9. /**
  10. * This protocol defines a delegate to be notified when the Ad Review SDK successfully generates a creative id.
  11. */
  12. @protocol MAAdReviewDelegate <NSObject>
  13. /**
  14. * The SDK invokes this callback when the Ad Review SDK successfully generates a creative id.
  15. *
  16. * The SDK invokes this callback on the UI thread.
  17. *
  18. * @param creativeIdentifier The Ad Review creative id tied to the ad, if any. You can report creative issues to our Ad review team using this id.
  19. * @param ad The ad for which the ad review event was detected.
  20. */
  21. - (void)didGenerateCreativeIdentifier:(NSString *)creativeIdentifier forAd:(MAAd *)ad;
  22. @end
  23. NS_ASSUME_NONNULL_END