Package zendesk.android.events
Class ZendeskEvent.MessagesShown
-
- All Implemented Interfaces:
public final class ZendeskEvent.MessagesShown extends ZendeskEvent
This event is emitted when messages are being rendered in the conversation screen.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
id
private final String
conversationId
private final Long
timestamp
private final List<ZendeskMessage>
messages
-
Constructor Summary
Constructors Constructor Description ZendeskEvent.MessagesShown(String id, String conversationId, Long timestamp, List<ZendeskMessage> messages)
-
Method Summary
Modifier and Type Method Description final String
getId()
The unique identifier of the event. final String
getConversationId()
the id of the conversation that the messages belong to. final Long
getTimestamp()
The Unix timestamp when the event fired. final List<ZendeskMessage>
getMessages()
The list of messages that were displayed. -
-
Constructor Detail
-
ZendeskEvent.MessagesShown
ZendeskEvent.MessagesShown(String id, String conversationId, Long timestamp, List<ZendeskMessage> messages)
-
-
Method Detail
-
getConversationId
final String getConversationId()
the id of the conversation that the messages belong to.
-
getTimestamp
final Long getTimestamp()
The Unix timestamp when the event fired.
-
getMessages
final List<ZendeskMessage> getMessages()
The list of messages that were displayed.
-
-
-
-