Package com.unblu.sdk.core.model
Interface LastChatMessage
public interface LastChatMessage
Interface representing the information of the last sent message in a conversation.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the URL of the sender person's avatar.Returns the ID of the message.Returns the name of the sender.Returns the ID of the sender person.longReturns the server time of the Collaboration Server when the message was sent.getText()Returns the text of the message.
-
Method Details
-
getMessageId
Returns the ID of the message.- Returns:
- A string representing the ID of the message.
-
getServerTime
long getServerTime()Returns the server time of the Collaboration Server when the message was sent.- Returns:
- A long representing the server time of the Collaboration Server.
-
getText
Returns the text of the message.- Returns:
- A string representing the sent text.
-
getSenderPersonId
Returns the ID of the sender person.- Returns:
- A string representing the person ID of the sender.
-
getSenderName
Returns the name of the sender.- Returns:
- A string representing the name of the sender.
-
getAvatarUrl
Returns the URL of the sender person's avatar.- Returns:
- A string representing the sender person's avatar URL.
-