Video SDK for MacOS API Reference
Loading...
Searching...
No Matches
ZMVideoSDKChatMessage.h
Go to the documentation of this file.
1
5
6
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
26@property (nonatomic, copy, readonly) NSString* senderName;
27
32@property (nonatomic, retain, readonly) ZMVideoSDKUser* receiverUser;
33
37@property (nonatomic, copy, readonly) NSString* content;
38
42@property (nonatomic, assign, readonly) time_t timeStamp;
43
47@property (nonatomic, assign, readonly) BOOL isChatToAll;
48
52@property (nonatomic, assign, readonly) BOOL isSelfSend;
53
57@property (nonatomic, copy, readonly) NSString* messageID;
58
59@end
60NS_ASSUME_NONNULL_END
Represents a chat message within a session.
NSString * senderName
Gets the sender's display name. This returns the sender's name for both session users and broadcast s...
NSString * content
Content of the message.
BOOL isSelfSend
Determines if the message is send by yourself.
time_t timeStamp
Time stamp of the message.
BOOL isChatToAll
Determines if the message is send to all.
NSString * messageID
Gets the message ID of the current message.
ZMVideoSDKUser * receiverUser
Gets the message's receive user object.
ZMVideoSDKUser * sendUser
Gets the message's send user object. When the message is from a broadcast streaming viewer,...
Zoom Video SDK user information.