NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateQuickCommentInfo.h
浏览该文件的文档.
1//
2// NIMQChatQuickComment.h
3// NIMLib
4//
5// Created by Evang on 2022/3/17.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "NIMQChatDefs.h"
11
12NS_ASSUME_NONNULL_BEGIN
13/**
14 * 快捷评论
15 */
16@interface NIMQChatUpdateQuickCommentInfo : NSObject <NSCopying>
17
18/**
19 * 服务器id
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 频道id
25 */
26@property (nonatomic, assign) unsigned long long channelId;
27
28/**
29 * 时间
30 */
31@property (nonatomic, assign) NSTimeInterval timestamp;
32
33/**
34 * 评论者accid
35 */
36@property (nonatomic, copy) NSString *fromAccId;
37
38/**
39 * msg serverId
40 */
41@property (nonatomic, copy) NSString *msgServerId;
42
43/**
44 * 评论类型
45 */
46@property (nonatomic, assign) int64_t replyType;
47
48/**
49 * 操作类型,添加、删除
50 */
51@property (nonatomic, assign) NIMQChatUpdateQuickCommentType opeType;
52
53
54@end
55
56
57NS_ASSUME_NONNULL_END
NIMQChatUpdateQuickCommentType
Definition: NIMQChatDefs.h:454
Definition: NIMQChatUpdateQuickCommentInfo.h:16
unsigned long long serverId
Definition: NIMQChatUpdateQuickCommentInfo.h:21
NSString * fromAccId
Definition: NIMQChatUpdateQuickCommentInfo.h:36
int64_t replyType
Definition: NIMQChatUpdateQuickCommentInfo.h:46
NSTimeInterval timestamp
Definition: NIMQChatUpdateQuickCommentInfo.h:31
NSString * msgServerId
Definition: NIMQChatUpdateQuickCommentInfo.h:41
unsigned long long channelId
Definition: NIMQChatUpdateQuickCommentInfo.h:26
NIMQChatUpdateQuickCommentType opeType
Definition: NIMQChatUpdateQuickCommentInfo.h:51