NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatClient.h
浏览该文件的文档.
1//
2// NIMQChatClient.h
3// NIMLib
4//
5// Created by Netease on 2022/2/7.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11
12@interface NIMQChatClient : NSObject
13/**
14 * 客户端的操作系统信息,格式为
15 */
16@property(nullable, nonatomic, copy, readonly) NSString *os;
17
18/**
19 * 客户端类型。
20 * @see ClientType
21 *
22 */
23@property(nonatomic, assign, readonly) NSInteger clientType;
24
25/**
26 * 登录时间
27 */
28@property(nonatomic, assign, readonly) NSTimeInterval loginTime;
29
30/**
31 * 客户端IP
32 */
33@property(nullable, nonatomic, copy, readonly) NSString *clientIp;
34
35/**
36 * 客户端端口
37 */
38@property(nullable, nonatomic, copy, readonly) NSString *clientPort;
39
40/**
41 * 客户端设备Id
42 */
43@property(nullable, nonatomic, copy, readonly) NSString *deviceId;
44
45/**
46 * 自定义customTag
47 */
48@property(nullable, nonatomic, copy, readonly) NSString *customTag;
49
50/**
51 * 自定义ClientType
52 */
53@property(nonatomic, assign, readonly) NSInteger customClientType;
54@end
55
Definition: NIMQChatClient.h:13
NSString * clientIp
Definition: NIMQChatClient.h:33
NSString * clientPort
Definition: NIMQChatClient.h:38
NSTimeInterval loginTime
Definition: NIMQChatClient.h:28
NSString * deviceId
Definition: NIMQChatClient.h:43
NSInteger customClientType
Definition: NIMQChatClient.h:53
NSInteger clientType
Definition: NIMQChatClient.h:23
NSString * customTag
Definition: NIMQChatClient.h:48
NSString * os
Definition: NIMQChatClient.h:16