NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatAcceptServerInviteParam.h
浏览该文件的文档.
1//
2// NIMQChatAcceptServerInviteParam.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 NIMQChatAcceptServerInviteParam : NSObject <NSCopying>
17
18/**
19 * 接受加入的服务器Id,必填
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 发起邀请者的账号,必填
25 */
26@property (nonnull, nonatomic, copy) NSString * accid;
27
28/**
29 * 邀请ID
30 */
31@property (nonatomic, assign) unsigned long long requestId;
32@end
33
34
35NS_ASSUME_NONNULL_END
Definition: NIMQChatAcceptServerInviteParam.h:16
NSString * accid
Definition: NIMQChatAcceptServerInviteParam.h:26
unsigned long long serverId
Definition: NIMQChatAcceptServerInviteParam.h:21
unsigned long long requestId
Definition: NIMQChatAcceptServerInviteParam.h:31