PLVWebViewFeedData

Objective-C

@interface PLVWebViewFeedData : NSObject

/// 唯一标识
@property (nonatomic, copy, readonly) NSString *hashKey;

/// 数据下标
@property (nonatomic, assign) NSInteger index;
/// WebView 配置
@property (nonatomic, strong) PLVWebViewConfig *webViewConfig;
/// 用户信息
@property (nonatomic, strong) PLVWebViewLiveUserInfo * _Nullable liveUserInfo;
/// 频道信息
@property (nonatomic, strong) PLVWebViewLiveChannelInfo * _Nullable liveChannelInfo;

@end

Swift

class PLVWebViewFeedData : NSObject

Undocumented