NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatServerMember.h
浏览该文件的文档.
1//
2// NIMQChatServerMember.h
3// NIMSDK
4//
5// Created by Netease.
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@interface NIMQChatServerMember : NSObject
15
16/**
17 * 服务器id
18 */
19@property (nonatomic, assign) unsigned long long serverId;
20/**
21 * 应用id
22 */
23@property (nonatomic, assign) NSInteger appId;
24
25/**
26 * 用户accid
27 */
28@property (nonatomic, copy) NSString *accid;
29
30/**
31 * 昵称
32 */
33@property (nonatomic, copy) NSString *nick;
34
35/**
36 * 头像
37 */
38@property (nonatomic, copy) NSString *avatar;
39
40/**
41 * 邀请人
42 */
43@property (nonatomic, copy) NSString *inviter;
44
45/**
46 * 自定义扩展
47 */
48@property (nonatomic, copy) NSString *custom;
49
50/**
51 * 类型:0-普通成员,1-所有者
52 */
53@property (nonatomic, assign) NIMQChatServerMemberType type;
54
55/**
56 * 加入时间
57 */
58@property (nonatomic, assign) NSTimeInterval joinTime;
59
60/**
61 * 有效标志: 0-无效,1-有效
62 */
63@property (nonatomic, assign) BOOL validFlag;
64
65/**
66 * 创建时间
67 */
68@property (nonatomic, assign) NSTimeInterval createTime;
69
70/**
71 * 更新时间
72 */
73@property (nonatomic, assign) NSTimeInterval updateTime;
74
75
76@end
77
78NS_ASSUME_NONNULL_END
NIMQChatServerMemberType
Definition: NIMQChatDefs.h:400
Definition: NIMQChatServerMember.h:15
NSString * accid
Definition: NIMQChatServerMember.h:28
NSString * inviter
Definition: NIMQChatServerMember.h:43
BOOL validFlag
Definition: NIMQChatServerMember.h:63
NIMQChatServerMemberType type
Definition: NIMQChatServerMember.h:53
NSTimeInterval createTime
Definition: NIMQChatServerMember.h:68
NSString * nick
Definition: NIMQChatServerMember.h:33
NSString * custom
Definition: NIMQChatServerMember.h:48
NSString * avatar
Definition: NIMQChatServerMember.h:38
NSTimeInterval joinTime
Definition: NIMQChatServerMember.h:58
NSTimeInterval updateTime
Definition: NIMQChatServerMember.h:73
unsigned long long serverId
Definition: NIMQChatServerMember.h:19
NSInteger appId
Definition: NIMQChatServerMember.h:23