CSJNativeExpressVideoAdContext.h 643 B

123456789101112131415161718192021222324
  1. //
  2. // CSJNativeExpressVideoAdContext.h
  3. // CSJAdSDK
  4. //
  5. // Created by yujie on 2021/12/7.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef void(^SkipBlock)(BOOL skiped);
  10. @interface CSJNativeExpressVideoAdContext : NSObject
  11. @property (nonatomic, strong) CSJAdSlot *slot;
  12. @property (nonatomic, strong) CSJMaterialMeta *materialMeta;
  13. @property (nonatomic, weak) id sender;
  14. @property (nonatomic, copy) SkipBlock skipBlock;
  15. @property (nonatomic, copy) NSString *rewardAlertTitle;
  16. @property (nonatomic, copy) NSString *rewardAlertConfirm;
  17. @property (nonatomic, copy) NSString *rewardAlertCancel;
  18. @end
  19. NS_ASSUME_NONNULL_END