Interface LastChatMessage


public interface LastChatMessage
Interface representing the information of the last sent message in a conversation.
  • Method Details

    • getMessageId

      @Nullable String 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

      @Nullable String getText()
      Returns the text of the message.
      Returns:
      A string representing the sent text.
    • getSenderPersonId

      @Nullable String getSenderPersonId()
      Returns the ID of the sender person.
      Returns:
      A string representing the person ID of the sender.
    • getSenderName

      @Nullable String getSenderName()
      Returns the name of the sender.
      Returns:
      A string representing the name of the sender.
    • getAvatarUrl

      @Nullable String getAvatarUrl()
      Returns the URL of the sender person's avatar.
      Returns:
      A string representing the sender person's avatar URL.