NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatDefs.h
浏览该文件的文档.
1//
2// NIMQChatDefs.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#ifndef NIMQChatDefs_h
10#define NIMQChatDefs_h
11
12#import <Foundation/Foundation.h>
13
14/**
15 * 登录步骤枚举
16 */
17typedef NS_ENUM(NSInteger, NIMQChatLoginStep)
18{
19 /**
20 * 连接服务器
21 */
23 /**
24 * 连接服务器成功
25 */
27 /**
28 * 连接服务器失败
29 */
31 /**
32 * 登录
33 */
35 /**
36 * 登录成功
37 */
39 /**
40 * 登录失败
41 */
43 /**
44 * 开始同步
45 */
47 /**
48 * 同步完成
49 */
51 /**
52 * 连接断开
53 */
55 /**
56 * 网络切换
57 * @discussion 这个并不是登录步骤的一种,但是UI有可能需要通过这个状态进行UI展现
58 */
60 /**
61 * 主动退出登陆
62 */
64};
65/**
66 * 系统通知类型
67 */
68typedef NS_ENUM(NSInteger, NIMQChatSystemNotificationType) {
69 /**
70 * 邀请服务器成员
71 */
73
74 /**
75 * 拒绝邀请
76 */
78
79 /**
80 * 申请加入服务器
81 */
83
84 /**
85 * 拒绝申请
86 */
88
89 /**
90 * 创建服务器
91 */
93
94 /**
95 * 删除服务器
96 */
98
99 /**
100 * 修改服务器信息
101 */
103
104 /**
105 * 已邀请服务器成员
106 */
108
109 /**
110 * 接受邀请
111 */
113
114 /**
115 * 已申请加入服务器
116 */
118
119 /**
120 * 接受申请
121 */
123
124 /**
125 * 踢除服务器成员
126 */
128
129 /**
130 * 主动离开服务器
131 */
133
134 /**
135 * 修改服务器成员信息
136 */
138
139 /**
140 * 创建频道
141 */
143
144 /**
145 * 删除频道
146 */
148
149 /**
150 * 修改频道信息
151 */
153
154 /**
155 * 频道修改黑白名单身份组
156 */
158
159 /**
160 * 频道修改黑白名单成员
161 */
163
164 /**
165 * 更新了消息的快捷评论
166 */
168 /**
169 * 新增频道分组
170 */
172 /**
173 * 删除频道分组
174 */
176 /**
177 * 修改频道分组
178 */
180 /**
181 * 更新频道分组黑白名单身份组
182 */
184 /**
185 * 更新频道分组黑白名单成员
186 */
188 /**
189 * 加入服务器身份组成员
190 */
192 /**
193 * 移除服务器身份组成员
194 */
196 /**
197 * 更新服务器身份组权限
198 */
200 /**
201 * 更新频道身份组权限
202 */
204 /**
205 * 更新频道中个人定制权限
206 */
208 /*
209 * 频道对当前用户可见性变更
210 */
212 /**
213 * 用户进入/离开服务器
214 */
216 /**
217 * 用户通过邀请码加入服务器
218 */
220 /**
221 * 频道对游客可见性变更,sdk收到此通知后需要重新调整频道的游客订阅信息 //attach:JSON格式,字段:event,event=1表示in,event=2表示out
222 */
224 /**
225 * 修改IM用户信息 //attach:JSON格式,字段:type,serverIds,userInfo(name、icon)
226 * 2023.02.20 IM-5455 【圈组】圈组的用户资料如果没设置,复用IM的用户资料
227 */
229 /**
230 * 禁言、解禁相关操作
231 */
233 /**
234 * 自定义信息
235 */
237
238};
239
240typedef NS_ENUM(NSInteger, NIMQChatSystemNotificationToType) {
241 /**
242 * 服务器ID
243 */
245 /**
246 * 服务器ID/频道ID
247 */
249 /**
250 * 服务器ID/账号
251 */
253 /**
254 * 服务器ID/频道ID/账号
255 */
257 /**
258 * 账号
259 */
261};
262
263//身份组类型 1表示everyone,2表示定制身份组
264typedef NS_ENUM(NSInteger, NIMQChatRoleType) {
265 /**
266 * everyone
267 */
269 /**
270 * 定制
271 */
273};
274
275/**
276 * 圈组网络请求回调
277 *
278 * @param error 错误信息
279 */
280typedef void(^NIMQChatHandler)(NSError *__nullable error);
281
282/**
283 * 圈组权限类型
284 */
285typedef NS_ENUM(NSInteger, NIMQChatPermissionType) {
286
287 /**
288 * 管理服务器。修改服务器
289 */
291 /**
292 * 管理频道,server和channel都有
293 */
295 /**
296 * 管理角色的权限,server和channel都有
297 */
299 /**
300 * 发送消息,server和channel都有
301 */
303 /**
304 * 修改自己在该server的成员信息,仅server有
305 */
307 /**
308 * 邀请他人进入server的,仅server有
309 */
311 /**
312 * 踢除他人的权限,仅server有
313 */
315 /**
316 * 修改他人在该server的服务器成员信息,仅server有
317 */
319 /**
320 * 撤回他人消息的权限,server和channel都有
321 */
323 /**
324 * 删除他人消息的权限,server和channel都有
325 */
327 /**
328 * @ 他人的权限,server和channel都有
329 */
331 /**
332 * @everyone的权限,server和channel都有
333 */
335 /**
336 * 管理黑白名单的权限,server和channel都有
337 */
339 /**
340 * 封禁他人的权限,仅server有,允许成员永久封禁其他成员访问此服务器
341 */
343 /**
344 * RTC频道:连接的权限
345 */
347 /**
348 * RTC频道:断开他人连接的权限
349 */
351 /**
352 * RTC频道:开启麦克风的权限
353 */
355 /**
356 * RTC频道:开启摄像头的权限
357 */
359 /**
360 * RTC频道:开启/关闭他人麦克风的权限
361 */
363 /**
364 * RTC频道:开启/关闭他人摄像头的权限
365 */
367 /**
368 * RTC频道:开启/关闭全员麦克风的权限
369 */
371 /**
372 * RTC频道:开启/关闭全员摄像头的权限
373 */
375 /**
376 * RTC频道:打开自己共享屏幕的权限
377 */
379 /**
380 * RTC频道:关闭他人共享屏幕的权限
381 */
383 /**
384 * 服务器申请处理权限
385 */
387 /**
388 * 加入服务器申请邀请历史查看权限,有这个权限才可以查询server级别的申请/邀请记录
389 */
391 /**
392 * 身份组的权限,server和channel都有
393 */
395 /**
396 * 禁言操作的权限,server和channel都有
397 */
400
401// 权限操作
402typedef NS_ENUM(NSInteger, NIMQChatPermissionStatus) {
406};
407// 成员
408typedef NS_ENUM(NSInteger, NIMQChatServerMemberType) {
411};
412// 频道类型
413typedef NS_ENUM(NSInteger, NIMQChatChannelType) {
414 NIMQChatChannelTypeMsg = 0, // 消息频道
415 NIMQChatChannelTypeRTC = 1, // 音视频频道
416 NIMQChatChannelTypeCustom = 100, //自定义频道
417};
418
419// 频道配置与频道分组同步模式
420typedef NS_ENUM(NSInteger, NIMQChatChannelSyncMode) {
424};
425// 频道查看模式
426typedef NS_ENUM(NSInteger, NIMQChatChannelViewMode) {
430};
431
432
433// 服务器邀请模式
434typedef NS_ENUM(NSInteger, NIMQChatServerInviteMode) {
436 NIMQChatServerInviteModeAutoEnter = 1, // 不需要同意
437};
438
439// 服务器申请模式
440typedef NS_ENUM(NSInteger, NIMQChatServerApplyMode) {
441 NIMQChatServerApplyModeAutoEnter = 0, // 不需要同意
443};
444//频道成员身份组的操作类型
445typedef NS_ENUM(NSInteger, NIMQChatChannelMemberRoleOpeType) {
448};
449//频道成员身份组类型
450typedef NS_ENUM(NSInteger, NIMQChatChannelMemberRoleType) {
453};
454
455//成员封禁类型
456typedef NS_ENUM(NSInteger, NIMQChatServerMemberBanType) {
459};
460
461//快捷评论操作类型
462typedef NS_ENUM(NSInteger, NIMQChatUpdateQuickCommentType) {
465};
466
467typedef NS_ENUM(NSInteger, NIMQChatSearchServerType) {
469 NIMQChatSearchServerTypePersonal = 2, // 个人服务器搜索
470};
471
472typedef NS_ENUM(NSInteger, NIMQChatSearchServerSortType) {
473 NIMQChatSearchServerSortTypeCustomWeight = 0, // 自定义权重排序
474 NIMQChatSearchServerSortTypeCreateTime = 1, // 创建时间排序, 默认
475 NIMQChatSearchServerSortTypeMemberCount = 2, // 服务器人数排序
476};
477
478typedef NS_ENUM(NSInteger, NIMQChatSearchChannelSortType) {
479 NIMQChatSearchChannelSortTypeCustomWeight = 0, // 自定义权重排序
480 NIMQChatSearchChannelSortTypeCreateTime = 1, // 创建时间排序, 默认
481};
482
483typedef NS_ENUM(NSInteger, NIMQChatInoutType) {
484 NIMQChatInoutTypeIn = 1, // 加入
485 NIMQChatInoutTypeOut = 2, // 退出
486};
487
488//圈组消息排序方式
489typedef NS_ENUM(NSInteger, NIMQChatSearchMessageSortType) {
491};
492
493//圈组订阅类型
494typedef NS_ENUM(NSInteger, NIMQChatSubscribeType) {
495
496 /**
497 * 订阅某个channel的【消息】/【通知】
498 */
500 /**
501 * 订阅某个channel的【消息未读数】/【通知】
502 */
504 /**
505 * 订阅某个channel的【消息未读状态】/【通知】
506 */
508 /**
509 * 订阅某个server的【消息】/【通知】,如server基本信息修改、人员进出、权限变更、创建channel等
510 */
512 /**
513 * 订阅某个channel的消息正在输入事件
514 */
516 /**
517 * 【游客】订阅某个channel的【消息】/【通知】
518 */
520 /**
521 * 【游客】订阅某个server的【消息】/【通知】
522 */
524};
525
526//圈组订阅操作类型
527typedef NS_ENUM(NSInteger, NIMQChatSubscribeOperationType) {
528 /**
529 * 订阅
530 */
532 /**
533 * 取消订阅
534 */
536};
537
538
539
540//圈组游客可见模式
541typedef NS_ENUM(NSInteger, NIMQChatVisitorMode) {
542 /**
543 * 不传
544 */
546 /**
547 * 可见
548 */
550 /**
551 * 不可见
552 */
554 /**
555 * 跟随模式(默认),频道公开游客可见,频道私密游客不可见
556 */
558};
559
560//禁言的操作类型
561typedef NS_ENUM(NSInteger, NIMQChatMuteOperateType) {
562 /**
563 * 禁言
564 */
566 /**
567 * 解禁
568 */
570 /**
571 * 自动解禁
572 */
574};
575
576
577//禁言级别
578typedef NS_ENUM(NSInteger, NIMQChatMuteLevel) {
579 /**
580 * 服务器级别
581 */
583 /**
584 * 频道级别
585 */
587};
588
589//禁言后的通知范围类型
590typedef NS_ENUM(NSInteger, NIMQChatMuteNotifyScope) {
591 /**
592 * 仅通知被操作人
593 */
595 /**
596 * 通知所有人
597 */
599};
600
601#endif /* NIMQChatDefs_h */
NIMQChatVisitorMode
Definition: NIMQChatDefs.h:541
@ NIMQChatVisitorModeVisible
Definition: NIMQChatDefs.h:549
@ NIMQChatVisitorModeNone
Definition: NIMQChatDefs.h:545
@ NIMQChatVisitorModeFollow
Definition: NIMQChatDefs.h:557
@ NIMQChatVisitorModeInvisible
Definition: NIMQChatDefs.h:553
NIMQChatServerMemberBanType
Definition: NIMQChatDefs.h:456
@ NIMQChatServerMemberBanTypeUnBan
Definition: NIMQChatDefs.h:458
@ NIMQChatServerMemberBanTypeBan
Definition: NIMQChatDefs.h:457
NIMQChatSearchMessageSortType
Definition: NIMQChatDefs.h:489
@ NIMQChatSearchMessageSortTypeSendTime
Definition: NIMQChatDefs.h:490
NIMQChatServerInviteMode
Definition: NIMQChatDefs.h:434
@ NIMQChatServerInviteModeNeedApprove
Definition: NIMQChatDefs.h:435
@ NIMQChatServerInviteModeAutoEnter
Definition: NIMQChatDefs.h:436
NIMQChatMuteNotifyScope
Definition: NIMQChatDefs.h:590
@ NIMQChatMuteNotifyScopeServerTargetOnly
Definition: NIMQChatDefs.h:594
@ NIMQChatMuteNotifyScopeChannelAll
Definition: NIMQChatDefs.h:598
NIMQChatSearchServerType
Definition: NIMQChatDefs.h:467
@ NIMQChatSearchServerTypePersonal
Definition: NIMQChatDefs.h:469
@ NIMQChatSearchServerTypeSquare
Definition: NIMQChatDefs.h:468
NIMQChatChannelType
Definition: NIMQChatDefs.h:413
@ NIMQChatChannelTypeCustom
Definition: NIMQChatDefs.h:416
@ NIMQChatChannelTypeRTC
Definition: NIMQChatDefs.h:415
@ NIMQChatChannelTypeMsg
Definition: NIMQChatDefs.h:414
NIMQChatSearchServerSortType
Definition: NIMQChatDefs.h:472
@ NIMQChatSearchServerSortTypeCustomWeight
Definition: NIMQChatDefs.h:473
@ NIMQChatSearchServerSortTypeMemberCount
Definition: NIMQChatDefs.h:475
@ NIMQChatSearchServerSortTypeCreateTime
Definition: NIMQChatDefs.h:474
NIMQChatSearchChannelSortType
Definition: NIMQChatDefs.h:478
@ NIMQChatSearchChannelSortTypeCreateTime
Definition: NIMQChatDefs.h:480
@ NIMQChatSearchChannelSortTypeCustomWeight
Definition: NIMQChatDefs.h:479
NIMQChatInoutType
Definition: NIMQChatDefs.h:483
@ NIMQChatInoutTypeOut
Definition: NIMQChatDefs.h:485
@ NIMQChatInoutTypeIn
Definition: NIMQChatDefs.h:484
NIMQChatChannelViewMode
Definition: NIMQChatDefs.h:426
@ NIMQChatChannelViewModePublic
Definition: NIMQChatDefs.h:428
@ NIMQChatChannelViewModeNone
Definition: NIMQChatDefs.h:427
@ NIMQChatChannelViewModePrivate
Definition: NIMQChatDefs.h:429
NIMQChatChannelSyncMode
Definition: NIMQChatDefs.h:420
@ NIMQChatChannelSyncModeNone
Definition: NIMQChatDefs.h:421
@ NIMQChatChannelSyncModeSync
Definition: NIMQChatDefs.h:423
@ NIMQChatChannelSyncModeNotSync
Definition: NIMQChatDefs.h:422
NIMQChatMuteLevel
Definition: NIMQChatDefs.h:578
@ NIMQChatMuteLevelChannel
Definition: NIMQChatDefs.h:586
@ NIMQChatMuteLevelServer
Definition: NIMQChatDefs.h:582
NIMQChatSubscribeOperationType
Definition: NIMQChatDefs.h:527
@ NIMQChatSubscribeOperationTypeUnsubscribe
Definition: NIMQChatDefs.h:535
@ NIMQChatSubscribeOperationTypeSubscribe
Definition: NIMQChatDefs.h:531
NIMQChatMuteOperateType
Definition: NIMQChatDefs.h:561
@ NIMQChatMuteOperateTypeAutoUnMute
Definition: NIMQChatDefs.h:573
@ NIMQChatMuteOperateTypeMute
Definition: NIMQChatDefs.h:565
@ NIMQChatMuteOperateTypeUnMute
Definition: NIMQChatDefs.h:569
NIMQChatServerMemberType
Definition: NIMQChatDefs.h:408
@ NIMQChatServerMemberTypeOwner
Definition: NIMQChatDefs.h:410
@ NIMQChatServerMemberTypeCommon
Definition: NIMQChatDefs.h:409
NIMQChatRoleType
Definition: NIMQChatDefs.h:264
@ NIMQChatRoleTypeCustom
Definition: NIMQChatDefs.h:272
@ NIMQChatRoleTypeEveryOne
Definition: NIMQChatDefs.h:268
NIMQChatSystemNotificationType
Definition: NIMQChatDefs.h:68
@ NIMQChatSystemNotificationTypeUpdateChannelCategoryBlackWhiteRole
Definition: NIMQChatDefs.h:183
@ NIMQChatSystemNotificationTypeRemoveServerRoleMembers
Definition: NIMQChatDefs.h:195
@ NIMQChatSystemNotificationTypeDeleteChannelCategory
Definition: NIMQChatDefs.h:175
@ NIMQChatSystemNotificationTypeServerMemberApply
Definition: NIMQChatDefs.h:82
@ NIMQChatSystemNotificationTypeVisitorChannelVisibilityUpdate
Definition: NIMQChatDefs.h:223
@ NIMQChatSystemNotificationTypeServerMemberInvite
Definition: NIMQChatDefs.h:72
@ NIMQChatSystemNotificationTypeMemberRoleAuthUpdate
Definition: NIMQChatDefs.h:207
@ NIMQChatSystemNotificationTypeUpdateQuickComment
Definition: NIMQChatDefs.h:167
@ NIMQChatSystemNotificationTypeServerMemberKick
Definition: NIMQChatDefs.h:127
@ NIMQChatSystemNotificationTypeServerUpdate
Definition: NIMQChatDefs.h:102
@ NIMQChatSystemNotificationTypeAddServerRoleMembers
Definition: NIMQChatDefs.h:191
@ NIMQChatSystemNotificationTypeServerMemberLeave
Definition: NIMQChatDefs.h:132
@ NIMQChatSystemNotificationTypeChannelUpdateWhiteBlackMember
Definition: NIMQChatDefs.h:162
@ NIMQChatSystemNotificationTypeServerMemberInviteAccept
Definition: NIMQChatDefs.h:112
@ NIMQChatSystemNotificationTypeUpdateChannelCategoryBlackWhiteMember
Definition: NIMQChatDefs.h:187
@ NIMQChatSystemNotificationTypeServerMemberUpdate
Definition: NIMQChatDefs.h:137
@ NIMQChatSystemNotificationTypeMyMemberInfoUpdated
Definition: NIMQChatDefs.h:228
@ NIMQChatSystemNotificationTypeCreateChannelCategory
Definition: NIMQChatDefs.h:171
@ NIMQChatSystemNotificationTypeServerRoleAuthUpdate
Definition: NIMQChatDefs.h:199
@ NIMQChatSystemNotificationTypeCustom
Definition: NIMQChatDefs.h:236
@ NIMQChatSystemNotificationTypeServerMemberInviteReject
Definition: NIMQChatDefs.h:77
@ NIMQChatSystemNotificationTypeChannelVisibilityUpdate
Definition: NIMQChatDefs.h:211
@ NIMQChatSystemNotificationTypeServerEnterLeave
Definition: NIMQChatDefs.h:215
@ NIMQChatSystemNotificationTypeChannelRemove
Definition: NIMQChatDefs.h:147
@ NIMQChatSystemNotificationTypeServerMemberJoinByInviteCode
Definition: NIMQChatDefs.h:219
@ NIMQChatSystemNotificationTypeServerRemove
Definition: NIMQChatDefs.h:97
@ NIMQChatSystemNotificationTypeChannelUpdate
Definition: NIMQChatDefs.h:152
@ NIMQChatSystemNotificationTypeServerMemberApplyAccept
Definition: NIMQChatDefs.h:122
@ NIMQChatSystemNotificationTypeServerMemberApplyDone
Definition: NIMQChatDefs.h:117
@ NIMQChatSystemNotificationTypeChannelUpdateWhiteBlackRole
Definition: NIMQChatDefs.h:157
@ NIMQChatSystemNotificationTypeChannelCreate
Definition: NIMQChatDefs.h:142
@ NIMQChatSystemNotificationTypeServerMemberApplyReject
Definition: NIMQChatDefs.h:87
@ NIMQChatSystemNotificationTypeServerMemberInviteDone
Definition: NIMQChatDefs.h:107
@ NIMQChatSystemNotificationTypeServerCreate
Definition: NIMQChatDefs.h:92
@ NIMQChatSystemNotificationTypeUpdateChannelCategory
Definition: NIMQChatDefs.h:179
@ NIMQChatSystemNotificationTypeMute
Definition: NIMQChatDefs.h:232
@ NIMQChatSystemNotificationTypeChannelRoleAuthUpdate
Definition: NIMQChatDefs.h:203
NIMQChatPermissionStatus
Definition: NIMQChatDefs.h:402
@ NIMQChatPermissionStatusAllow
Definition: NIMQChatDefs.h:405
@ NIMQChatPermissionStatusDeny
Definition: NIMQChatDefs.h:403
@ NIMQChatPermissionStatusExtend
Definition: NIMQChatDefs.h:404
NIMQChatChannelMemberRoleType
Definition: NIMQChatDefs.h:450
@ NIMQChatChannelMemberRoleTypeBlack
Definition: NIMQChatDefs.h:452
@ NIMQChatChannelMemberRoleTypeWhite
Definition: NIMQChatDefs.h:451
void(^ NIMQChatHandler)(NSError *__nullable error)
Definition: NIMQChatDefs.h:280
NIMQChatSystemNotificationToType
Definition: NIMQChatDefs.h:240
@ NIMQChatSystemNotificationToTypeServer
Definition: NIMQChatDefs.h:244
@ NIMQChatSystemNotificationToTypeChannel
Definition: NIMQChatDefs.h:248
@ NIMQChatSystemNotificationToTypeAccids
Definition: NIMQChatDefs.h:260
@ NIMQChatSystemNotificationToTypeChannelAccids
Definition: NIMQChatDefs.h:256
@ NIMQChatSystemNotificationToTypeServerAccids
Definition: NIMQChatDefs.h:252
NIMQChatSubscribeType
Definition: NIMQChatDefs.h:494
@ NIMQChatSubscribeTypeChannelMsgUnreadCount
Definition: NIMQChatDefs.h:503
@ NIMQChatSubscribeTypeVisitorServerMsg
Definition: NIMQChatDefs.h:523
@ NIMQChatSubscribeTypeChannelMsgUnreadStatus
Definition: NIMQChatDefs.h:507
@ NIMQChatSubscribeTypeChannelMsg
Definition: NIMQChatDefs.h:499
@ NIMQChatSubscribeTypeServerMsg
Definition: NIMQChatDefs.h:511
@ NIMQChatSubscribeTypeChannelTypingEvent
Definition: NIMQChatDefs.h:515
@ NIMQChatSubscribeTypeVisitorChannelMsg
Definition: NIMQChatDefs.h:519
NIMQChatUpdateQuickCommentType
Definition: NIMQChatDefs.h:462
@ NIMQChatUpdateQuickCommentTypeDelete
Definition: NIMQChatDefs.h:464
@ NIMQChatUpdateQuickCommentTypeAdd
Definition: NIMQChatDefs.h:463
NIMQChatLoginStep
Definition: NIMQChatDefs.h:18
@ NIMQChatLoginStepLogining
Definition: NIMQChatDefs.h:34
@ NIMQChatLoginStepSyncOK
Definition: NIMQChatDefs.h:50
@ NIMQChatLoginStepNetChanged
Definition: NIMQChatDefs.h:59
@ NIMQChatLoginStepLinkOK
Definition: NIMQChatDefs.h:26
@ NIMQChatLoginStepLoginFailed
Definition: NIMQChatDefs.h:42
@ NIMQChatLoginStepSyncing
Definition: NIMQChatDefs.h:46
@ NIMQChatLoginStepLogout
Definition: NIMQChatDefs.h:63
@ NIMQChatLoginStepLinkFailed
Definition: NIMQChatDefs.h:30
@ NIMQChatLoginStepLinking
Definition: NIMQChatDefs.h:22
@ NIMQChatLoginStepLoginOK
Definition: NIMQChatDefs.h:38
@ NIMQChatLoginStepLoseConnection
Definition: NIMQChatDefs.h:54
NIMQChatServerApplyMode
Definition: NIMQChatDefs.h:440
@ NIMQChatServerApplyModeAutoEnter
Definition: NIMQChatDefs.h:441
@ NIMQChatServerApplyModeNeedApprove
Definition: NIMQChatDefs.h:442
NIMQChatPermissionType
Definition: NIMQChatDefs.h:285
@ NIMQChatPermissionTypeQueryMentionedRole
Definition: NIMQChatDefs.h:394
@ NIMQChatPermissionTypeRTCChannelOpenCloseOtherCamera
Definition: NIMQChatDefs.h:366
@ NIMQChatPermissionTypeRTCChannelCloseOtherShareScreen
Definition: NIMQChatDefs.h:382
@ NIMQChatPermissionTypeRTCChannelOpenCamera
Definition: NIMQChatDefs.h:358
@ NIMQChatPermissionTypeRTCChannelOpenCloseOtherMicrophone
Definition: NIMQChatDefs.h:362
@ NIMQChatPermissionTypeDeleteOtherMsg
Definition: NIMQChatDefs.h:326
@ NIMQChatPermissionTypeRTCChannelOpenCloseEveryOneMicrophone
Definition: NIMQChatDefs.h:370
@ NIMQChatPermissionTypeQueryServerInviteApplyHistory
Definition: NIMQChatDefs.h:390
@ NIMQChatPermissionTypeRemindAll
Definition: NIMQChatDefs.h:334
@ NIMQChatPermissionTypeRemindOther
Definition: NIMQChatDefs.h:330
@ NIMQChatPermissionTypeRevokeMsg
Definition: NIMQChatDefs.h:322
@ NIMQChatPermissionTypeRTCChannelDisconnectOther
Definition: NIMQChatDefs.h:350
@ NIMQChatPermissionTypeManageBlackWhiteList
Definition: NIMQChatDefs.h:338
@ NIMQChatPermissionTypeModifySelfInfo
Definition: NIMQChatDefs.h:306
@ NIMQChatPermissionTypeRTCChannelOpenMyShareScreen
Definition: NIMQChatDefs.h:378
@ NIMQChatPermissionTypeRTCChannelOpenCloseEveryOneCamera
Definition: NIMQChatDefs.h:374
@ NIMQChatPermissionTypeKickOthersInServer
Definition: NIMQChatDefs.h:314
@ NIMQChatPermissionTypeRTCChannelConnect
Definition: NIMQChatDefs.h:346
@ NIMQChatPermissionTypeSendMsg
Definition: NIMQChatDefs.h:302
@ NIMQChatPermissionTypeMute
Definition: NIMQChatDefs.h:398
@ NIMQChatPermissionTypeManageRole
Definition: NIMQChatDefs.h:298
@ NIMQChatPermissionTypeManageBanServerMember
Definition: NIMQChatDefs.h:342
@ NIMQChatPermissionTypeManageServer
Definition: NIMQChatDefs.h:290
@ NIMQChatPermissionTypeRTCChannelOpenMicrophone
Definition: NIMQChatDefs.h:354
@ NIMQChatPermissionTypeManageChannel
Definition: NIMQChatDefs.h:294
@ NIMQChatPermissionTypeInviteToServer
Definition: NIMQChatDefs.h:310
@ NIMQChatPermissionTypeModifyOthersInfoInServer
Definition: NIMQChatDefs.h:318
@ NIMQChatPermissionTypeHandleServerApply
Definition: NIMQChatDefs.h:386
NIMQChatChannelMemberRoleOpeType
Definition: NIMQChatDefs.h:445
@ NIMQChatChannelMemberRoleOpeTypeRemove
Definition: NIMQChatDefs.h:447
@ NIMQChatChannelMemberRoleOpeTypeAdd
Definition: NIMQChatDefs.h:446