iOS SDK API Reference
Loading...
Searching...
No Matches
MobileRTCMeetingChat.h
Go to the documentation of this file.
1//
2// MobileRTCMeetingChat.h
3// MobileRTC
4//
5// Created by Zoom Video Communications on 2017/9/15.
6// Copyright © 2019年 Zoom Video Communications, Inc. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
15@interface MobileRTCMeetingChat : NSObject
16
20@property (nonatomic, retain, readwrite) NSString * _Nullable chatId;
24@property (nonatomic, retain, readwrite) NSString * _Nullable senderId;
28@property (nonatomic, retain, readwrite) NSString * _Nullable senderName;
32@property (nonatomic, retain, readwrite) NSString * _Nullable receiverId;
36@property (nonatomic, retain, readwrite) NSString * _Nullable receiverName;
40@property (nonatomic, retain, readwrite) NSString * _Nullable content;
44@property (nonatomic, retain, readwrite) NSDate *_Nullable date;
45
49@property (nonatomic, readwrite) MobileRTCChatMessageType chatMessageType;
50
54@property (nonatomic, readwrite) BOOL isMyself;
58@property (nonatomic, readwrite) BOOL isPrivate;
62@property (nonatomic, readwrite) BOOL isChatToAll;
66@property (nonatomic, readwrite) BOOL isChatToAllPanelist;
70@property (nonatomic, readwrite) BOOL isChatToWaitingroom;
71@end
MobileRTCChatMessageType
Chat message type.
Retrieve the meeting chat data.
BOOL isChatToAllPanelist
Whether the message is send to all panelist or not.
NSString *_Nullable receiverId
The ID of user who receives message.
BOOL isChatToAll
Whether the message is send to all or not.
BOOL isMyself
Whether the message is sent by the user himself or not.
NSString *_Nullable content
The message content.
NSString *_Nullable senderName
The screen name of user who sends message.
NSString *_Nullable chatId
The message ID.
MobileRTCChatMessageType chatMessageType
The Chat message type.
BOOL isChatToWaitingroom
Whether the message is send to waiting room or not.
NSString *_Nullable senderId
The ID of user who sends message.
BOOL isPrivate
Whether the message is private or not.
NSDate *_Nullable date
The message timestamps.
NSString *_Nullable receiverName
The screen name of user who receives message.