12345678910111213141516171819202122232425262728293031323334 |
- //
- // ADCDN_RewardVideoAdModel.h
- // ADCDN
- //
- // Created by 吃不胖的瘦子 on 2021/2/23.
- // Copyright © 2021 llh. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ADCDN_RewardVideoAdModel : NSObject
- /**
- required.
- Third-party game user_id identity.
- Mainly used in the reward issuance, it is the callback pass-through parameter from server-to-server.
- It is the unique identifier of each user.
- In the non-server callback mode, it will also be pass-through when the video is finished playing.
- Only the string can be passed in this case, not nil.
- */
- @property (nonatomic, copy) NSString *userId;
- //optional. reward name.
- @property (nonatomic, copy) NSString *rewardName;
- //optional. number of rewards.
- @property (nonatomic, assign) NSInteger rewardAmount;
- //optional. serialized string.
- @property (nonatomic, copy) NSString *extra;
- @end
- NS_ASSUME_NONNULL_END
|