Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKChatMessage.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
9 private String msgId;
10
12
14
15 private String content;
16
17 private long timeStamp;
18
19 private boolean isChatToAll;
20
21 private boolean isSelfSend;
22
23
25 this.msgId = msgId;
26 this.senderUser = senderUser;
27 this.receiverUser = receiverUser;
28 this.content = content;
29 this.timeStamp = timeStamp;
30 this.isChatToAll = isChattoAll;
31 this.isSelfSend = isSelfSend;
32 }
33
38 public String getMessageId() {
39 return msgId;
40 }
41
47 return senderUser;
48 }
49
55 return receiverUser;
56 }
57
62 public String getContent() {
63 return content;
64 }
65
70 public long getTimeStamp() {
71 return timeStamp;
72 }
73
78 public boolean isChatToAll() {
79 return isChatToAll;
80 }
81
86 public boolean isSelfSend() {
87 return isSelfSend;
88 }
89
90}
Zoom Video SDK chat message bean.
long getTimeStamp()
Gets the message timestamp in milliseconds.
ZoomVideoSDKUser getSenderUser()
Gets the sender user.
ZoomVideoSDKChatMessage(String msgId, ZoomVideoSDKUser senderUser, ZoomVideoSDKUser receiverUser, String content, long timeStamp, boolean isChattoAll, boolean isSelfSend)
boolean isChatToAll()
Determines whether the message is sent to all.
ZoomVideoSDKUser getReceiverUser()
Gets the message receiver user. If the message is sent to all, receiverUser is null.
boolean isSelfSend()
Determines whether the message is sent by myself.
String getContent()
Gets the message content.
Zoom Video SDK user information.