Video SDK for MacOS API Reference
Loading...
Searching...
No Matches
ZMVideoSDKChatMessage.h
Go to the documentation of this file.
1
7#import <Foundation/Foundation.h>
8
9NS_ASSUME_NONNULL_BEGIN
10@class ZMVideoSDKUser;
15@interface ZMVideoSDKChatMessage : NSObject
16
21@property (nonatomic, retain, readonly) ZMVideoSDKUser* sendUser;
22
27@property (nonatomic, retain, readonly) ZMVideoSDKUser* receiverUser;
28
32@property (nonatomic, copy, readonly) NSString* content;
33
37@property (nonatomic, assign, readonly) time_t timeStamp;
38
42@property (nonatomic, assign, readonly) BOOL isChatToAll;
43
47@property (nonatomic, assign, readonly) BOOL isSelfSend;
48
52@property (nonatomic, copy, readonly) NSString* messageID;
53
54@end
55NS_ASSUME_NONNULL_END
Represents a chat message within a session.
NSString * content
Content of the message.
BOOL isSelfSend
Determine if the message is send by yourself.
time_t timeStamp
Time stamp of the message.
BOOL isChatToAll
Determine if the message is send to all.
NSString * messageID
Get the message ID of the current message.
ZMVideoSDKUser * receiverUser
Get the receive user object of the message.
ZMVideoSDKUser * sendUser
Get the send user object of the message.
Zoom Video SDK user information.