NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatApplyServerJoinParam.h
浏览该文件的文档.
1//
2// NIMQChatApplyServerJoinParam.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 NIMQChatApplyServerJoinParam : NSObject
17
18/**
19 * 申请加入的服务器Id
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 附言(最长5000)
25 */
26@property (nullable, nonatomic, copy) NSString *postscript;
27
28/**
29 * 有效时间,秒的NSNumber包装
30 */
31@property (nullable, nonatomic, strong) NSNumber *ttl;
32
33@end
34
35
36NS_ASSUME_NONNULL_END
Definition: NIMQChatApplyServerJoinParam.h:17
NSString * postscript
Definition: NIMQChatApplyServerJoinParam.h:26
NSNumber * ttl
Definition: NIMQChatApplyServerJoinParam.h:31
unsigned long long serverId
Definition: NIMQChatApplyServerJoinParam.h:21