NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatRequestTokenResult.h
浏览该文件的文档.
1//
2// NIMQChatRequestTokenResult.h
3// NIMLib
4//
5// Created by lihuang on 2022/6/29.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@interface NIMQChatRequestTokenResult : NSObject
14
15@property (nonatomic, copy) NSString *token;
16
17@property (nonatomic, assign) NSTimeInterval expireTime;
18
19@end
20
21NS_ASSUME_NONNULL_END
Definition: NIMQChatRequestTokenResult.h:14
NSTimeInterval expireTime
Definition: NIMQChatRequestTokenResult.h:17
NSString * token
Definition: NIMQChatRequestTokenResult.h:15