52 lines
1.1 KiB
Objective-C
52 lines
1.1 KiB
Objective-C
//
|
|
// recommdBottle.h
|
|
// TreeHole
|
|
//
|
|
// Created by ios on 2022/12/6.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface recommdBottle : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *alert_content;
|
|
|
|
@property (nonatomic, copy) NSString *alert_title;
|
|
|
|
@property (nonatomic, copy) NSString *android_iap_id;
|
|
|
|
@property (nonatomic, copy) NSString *block_see_tips;
|
|
|
|
@property (nonatomic, copy) NSString *bottle_create_time;
|
|
|
|
@property (nonatomic, copy) NSString *content_extra_type;
|
|
|
|
//"content_extra_type": "string",
|
|
// "disable_reply_edit": 0,
|
|
// "gender_str": "string",
|
|
// "iap_id": "string",
|
|
// "im_user_id": "string",
|
|
// "images": [
|
|
// "string"
|
|
// ],
|
|
// "interaction_type": "string",
|
|
// "is_attach": 0,
|
|
// "manager_info": "string",
|
|
// "need_vip": 0,
|
|
// "nick_name": "string",
|
|
// "price_des": "string",
|
|
// "reply_edit_placehold": "string",
|
|
// "user_des": "string",
|
|
// "user_id": 0,
|
|
// "vip_bottle": 0,
|
|
// "vip_des": "string",
|
|
// "vip_promotion_des": "string",
|
|
// "voice": "string",
|
|
// "voice_sec": 0
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|