2025-10-09 16:48:46 +08:00

79 lines
1.2 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NIMQChatServerMember.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NIMQChatDefs.h"
NS_ASSUME_NONNULL_BEGIN
@interface NIMQChatServerMember : NSObject
/**
* 服务器id
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 应用id
*/
@property (nonatomic, assign) NSInteger appId;
/**
* 用户accid
*/
@property (nonatomic, copy) NSString *accid;
/**
* 昵称
*/
@property (nonatomic, copy) NSString *nick;
/**
* 头像
*/
@property (nonatomic, copy) NSString *avatar;
/**
* 邀请人
*/
@property (nonatomic, copy) NSString *inviter;
/**
* 自定义扩展
*/
@property (nonatomic, copy) NSString *custom;
/**
* 类型0-普通成员1-所有者
*/
@property (nonatomic, assign) NIMQChatServerMemberType type;
/**
* 加入时间
*/
@property (nonatomic, assign) NSTimeInterval joinTime;
/**
* 有效标志: 0-无效1-有效
*/
@property (nonatomic, assign) BOOL validFlag;
/**
* 创建时间
*/
@property (nonatomic, assign) NSTimeInterval createTime;
/**
* 更新时间
*/
@property (nonatomic, assign) NSTimeInterval updateTime;
@end
NS_ASSUME_NONNULL_END