NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatAcceptServerApplyParam.h
浏览该文件的文档.
1//
2// NIMQChatAcceptServerApplyParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 接受申请的参数
15 */
16@interface NIMQChatAcceptServerApplyParam : NSObject
17
18/**
19 * 同意加入的服务器ID
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 申请者ID
25 */
26@property (nonnull, nonatomic, copy) NSString *accid;
27
28/**
29 * 请求id
30 */
31@property (nonatomic, assign) unsigned long long requestId;
32
33@end
34
35
36NS_ASSUME_NONNULL_END
Definition: NIMQChatAcceptServerApplyParam.h:17
unsigned long long serverId
Definition: NIMQChatAcceptServerApplyParam.h:21
unsigned long long requestId
Definition: NIMQChatAcceptServerApplyParam.h:31
NSString * accid
Definition: NIMQChatAcceptServerApplyParam.h:26