CSJNativeExpressVideoAdDelegate.h 736 B

1234567891011121314151617181920212223
  1. //
  2. // CSJNativeExpressVideoAdDelegate.h
  3. // Pods
  4. //
  5. // Created by ByteDance on 2022/8/4.
  6. //
  7. #ifndef CSJNativeExpressVideoAdDelegate_h
  8. #define CSJNativeExpressVideoAdDelegate_h
  9. @protocol CSJNativeExpressVideoAdDelegate <NSObject>
  10. @optional
  11. - (void)nativeExpressVideoAdDidPlayFinishWithError:(nullable NSError *)error;
  12. - (void)nativeExpressVideoAdDidClickSkip;
  13. - (void)nativeExpressVideoAdEndcardWillClose;
  14. - (void)nativeExpressVideoAdEndcardDidClose;
  15. /// native express video ad reward verify: include C2C and S2S methods .
  16. - (void)nativeExpressVideoAdServerRewardDidSucceedVerify:(BOOL)verify;
  17. - (void)nativeExpressVideoAdServerRewardDidFailWithError:(nullable NSError *)error;
  18. @end
  19. #endif /* CSJNativeExpressVideoAdDelegate_h */