Package ai.nexconn.chat.message.model
Class MessageReadReceiptResponse
-
- All Implemented Interfaces:
public final class MessageReadReceiptResponseMessage read receipt response.
Received by the sender when recipients read the message.
-
-
Field Summary
Fields Modifier and Type Field Description private final ChannelIdentifierchannelIdentifierprivate final StringmessageIdprivate final List<ReadReceiptUser>usersprivate final IntegerreadCountprivate final IntegerunreadCountprivate final IntegertotalCount
-
Constructor Summary
Constructors Constructor Description MessageReadReceiptResponse()
-
Method Summary
Modifier and Type Method Description final ChannelIdentifiergetChannelIdentifier()Channel identifier. final StringgetMessageId()Server-side unique message ID. final List<ReadReceiptUser>getUsers()List of users who have read the message. final IntegergetReadCount()Read count. final IntegergetUnreadCount()Unread count. final IntegergetTotalCount()Total recipient count. -
-
Method Detail
-
getChannelIdentifier
final ChannelIdentifier getChannelIdentifier()
Channel identifier.
-
getMessageId
final String getMessageId()
Server-side unique message ID.
-
getUsers
final List<ReadReceiptUser> getUsers()
List of users who have read the message.
-
getReadCount
final Integer getReadCount()
Read count.
-
getUnreadCount
final Integer getUnreadCount()
Unread count.
-
getTotalCount
final Integer getTotalCount()
Total recipient count.
-
-
-
-