Package ai.nexconn.chat.message.model
Class ReadReceiptInfo
-
- All Implemented Interfaces:
public final class ReadReceiptInfoRead receipt info for a message.
Contains the channel info, message ID, and read/unread statistics.
-
-
Field Summary
Fields Modifier and Type Field Description private final ChannelTypechannelTypeprivate final StringchannelIdprivate final StringmessageIdprivate final IntegerunreadCountprivate final IntegerreadCountprivate final IntegertotalCount
-
Constructor Summary
Constructors Constructor Description ReadReceiptInfo()
-
Method Summary
Modifier and Type Method Description final ChannelTypegetChannelType()Channel type. final StringgetChannelId()Channel ID. final StringgetMessageId()Server-side unique message ID. final IntegergetUnreadCount()Unread count. final IntegergetReadCount()Read count. final IntegergetTotalCount()Total recipient count. -
-
Method Detail
-
getChannelType
final ChannelType getChannelType()
Channel type.
-
getChannelId
final String getChannelId()
Channel ID.
-
getMessageId
final String getMessageId()
Server-side unique message ID.
-
getUnreadCount
final Integer getUnreadCount()
Unread count.
-
getReadCount
final Integer getReadCount()
Read count.
-
getTotalCount
final Integer getTotalCount()
Total recipient count.
-
-
-
-