NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatApplyServerJoinResult.h
浏览该文件的文档.
1//
2// NIMQChatApplyServerJoinResult.h
3// NIMLib
4//
5// Created by lihuang on 2022/6/21.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12/**
13 * 申请加入服务器的结果
14 */
15@interface NIMQChatApplyServerJoinResult : NSObject
16/**
17 * 申请id
18 */
19@property (nonatomic, assign) unsigned long long requestId;
20
21/**
22 * 申请的有效时间
23 */
24@property (nonatomic, assign) NSTimeInterval ttl;
25
26@end
27
28NS_ASSUME_NONNULL_END
Definition: NIMQChatApplyServerJoinResult.h:16
NSTimeInterval ttl
Definition: NIMQChatApplyServerJoinResult.h:24
unsigned long long requestId
Definition: NIMQChatApplyServerJoinResult.h:19