Package zendesk.android.events
Class ConversationUnreadCountChange
-
- All Implemented Interfaces:
public final class ConversationUnreadCountChange
Data class representing the unread message count details for a conversation.
-
-
Field Summary
Fields Modifier and Type Field Description private final Integer
totalUnreadMessagesCount
private final String
conversationId
private final Integer
unreadCountInConversation
-
Constructor Summary
Constructors Constructor Description ConversationUnreadCountChange(Integer totalUnreadMessagesCount, String conversationId, Integer unreadCountInConversation)
-
Method Summary
Modifier and Type Method Description final Integer
getTotalUnreadMessagesCount()
The total number of unread messages across all conversations. final String
getConversationId()
The unique identifier of the latest updated top active conversation. final Integer
getUnreadCountInConversation()
The number of unread messages in the latest updated top active conversation. -
-
Method Detail
-
getTotalUnreadMessagesCount
final Integer getTotalUnreadMessagesCount()
The total number of unread messages across all conversations.
-
getConversationId
final String getConversationId()
The unique identifier of the latest updated top active conversation.
-
getUnreadCountInConversation
final Integer getUnreadCountInConversation()
The number of unread messages in the latest updated top active conversation.
-
-
-
-