ADCDN_RewardVideoAdModel.h 932 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // ADCDN_RewardVideoAdModel.h
  3. // ADCDN
  4. //
  5. // Created by 吃不胖的瘦子 on 2021/2/23.
  6. // Copyright © 2021 llh. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ADCDN_RewardVideoAdModel : NSObject
  11. /**
  12. required.
  13. Third-party game user_id identity.
  14. Mainly used in the reward issuance, it is the callback pass-through parameter from server-to-server.
  15. It is the unique identifier of each user.
  16. In the non-server callback mode, it will also be pass-through when the video is finished playing.
  17. Only the string can be passed in this case, not nil.
  18. */
  19. @property (nonatomic, copy) NSString *userId;
  20. //optional. reward name.
  21. @property (nonatomic, copy) NSString *rewardName;
  22. //optional. number of rewards.
  23. @property (nonatomic, assign) NSInteger rewardAmount;
  24. //optional. serialized string.
  25. @property (nonatomic, copy) NSString *extra;
  26. @end
  27. NS_ASSUME_NONNULL_END