PBGiftModel.h 887 B

123456789101112131415161718192021222324
  1. //
  2. // PBGiftModel.h
  3. // PBSDK
  4. //
  5. // Created by hello on 2024/12/31.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface PBGiftModel : NSObject
  10. @property (nonatomic, strong) NSString *code ;// 编码 string
  11. @property (nonatomic, strong) NSString *createTime ;// 时间 string(date-time)
  12. @property (nonatomic, strong) NSString *giftDesc ;// 礼物详情 string
  13. @property (nonatomic, strong) NSString *giftGifUrl ;// 礼物动态图片地址 string
  14. @property (nonatomic, strong) NSString *giftImgUrl ;// 礼物图片地址 string
  15. @property (nonatomic, strong) NSString *giftName ;// 礼物名字 string
  16. @property (nonatomic, strong) NSNumber *giftPrice;// 礼物价格 integer(int64)
  17. @property (nonatomic, strong) NSNumber *id;// id integer(int64)
  18. @property (nonatomic, strong) NSString *status;
  19. @end
  20. NS_ASSUME_NONNULL_END