HyphenateChatSDK 4.24.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
49@property (nonatomic, strong, readonly) EMUserInfo *_Nullable userInfo;
50
58@property (nonatomic, assign, readonly) NSUInteger addTimestamp;
78- (instancetype)initWithUserId:(NSString* _Nonnull)userId remark:(NSString* _Nullable)remark createAt:(NSUInteger)createAt;
79@end
Definition: EMContact.h:18
EMUserInfo *_Nullable userInfo
Definition: EMContact.h:49
NSString *_Nullable remark
Definition: EMContact.h:36
NSString *_Nonnull userId
Definition: EMContact.h:27
NSUInteger addTimestamp
Definition: EMContact.h:58
Definition: EMUserInfo.h:36