HyphenateChatSDK  4.22.0
EMContact.h
1 //
2 // EMContact.h
3 // HyphenateChat
4 //
5 // Created by li xiaoming on 2023/8/30.
6 // Copyright © 2023 easemob.com. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 @class EMUserInfo;
18 @interface EMContact : NSObject <NSCoding>
19 
27 @property (nonatomic,strong,readonly) NSString* _Nonnull userId;
28 
36 @property (nonatomic,strong) NSString* _Nullable remark;
37 
45 @property (nonatomic, strong, readonly) EMUserInfo *_Nullable userInfo;
46 
54 @property (nonatomic, assign, readonly) NSUInteger addTimestamp;
74 - (instancetype)initWithUserId:(NSString* _Nonnull)userId remark:(NSString* _Nullable)remark createAt:(NSUInteger)createAt;
75 @end
Definition: EMUserInfo.h:36
NSString *_Nullable remark
Definition: EMContact.h:36
NSUInteger addTimestamp
Definition: EMContact.h:54
EMUserInfo *_Nullable userInfo
Definition: EMContact.h:45
NSString *_Nonnull userId
Definition: EMContact.h:27
Definition: EMContact.h:18