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
39 public String getMessageId() {
40 return msgId;
41 }
42
49 return senderUser;
50 }
51
52
59 return receiverUser;
60 }
61
62
68 public String getContent() {
69 return content;
70 }
71
77 public long getTimeStamp() {
78 return timeStamp;
79 }
80
86 public boolean isChatToAll() {
87 return isChatToAll;
88 }
89
95 public boolean isSelfSend() {
96 return isSelfSend;
97 }
98
99}
Zoom Video SDK chat message bean.
long getTimeStamp()
Get the message time stamp. millisecond.
ZoomVideoSDKUser getSenderUser()
Get the sender user.
ZoomVideoSDKChatMessage(String msgId, ZoomVideoSDKUser senderUser, ZoomVideoSDKUser receiverUser, String content, long timeStamp, boolean isChattoAll, boolean isSelfSend)
boolean isChatToAll()
Query If the message is send to all.
ZoomVideoSDKUser getReceiverUser()
Get the message receiver userId. If the message is send to all , receiverUserId is -1;.
boolean isSelfSend()
Query If the message send by myself.
String getContent()
Get the message content.
Zoom Video SDK user information.