NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatJoinByInviteCodeParam.h
浏览该文件的文档.
1//
2// NIMQChatRevokeMessageParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11@class NIMQChatMessage;
13
14NS_ASSUME_NONNULL_BEGIN
15
16/**
17 * 通过邀请码加入服务器的参数
18 */
19@interface NIMQChatJoinByInviteCodeParam : NSObject <NSCopying>
20
21/**
22* 服务器ID
23*/
24@property(nonatomic, assign) unsigned long long serverId;
25/**
26 * 邀请码
27 */
28@property(nullable, nonatomic, copy) NSString* inviteCode;
29/**
30 * 附言
31 */
32@property(nullable, nonatomic, copy) NSString* postscript;
33
34@end
35
36NS_ASSUME_NONNULL_END
Definition: NIMQChatJoinByInviteCodeParam.h:19
NSString * inviteCode
Definition: NIMQChatJoinByInviteCodeParam.h:28
NSString * postscript
Definition: NIMQChatJoinByInviteCodeParam.h:32
unsigned long long serverId
Definition: NIMQChatJoinByInviteCodeParam.h:24
Definition: NIMQChatMessage.h:76
Definition: NIMQChatUpdateParam.h:13