Package zendesk.android.events
Class ConversationServedByAgentDetails
-
- All Implemented Interfaces:
public final class ConversationServedByAgentDetails
Represents details about a conversation served by an agent within the Zendesk API context.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
agentDisplayName
private final String
agentId
private final AgentMessageSource
agentMessageSource
private final String
conversationId
-
Constructor Summary
Constructors Constructor Description ConversationServedByAgentDetails(String agentDisplayName, String agentId, AgentMessageSource agentMessageSource, String conversationId)
-
Method Summary
Modifier and Type Method Description final String
getAgentDisplayName()
The display name of the agent serving the conversation. final String
getAgentId()
Unique identifier string for the agent. final AgentMessageSource
getAgentMessageSource()
Enum indicating the source or tool context of the agent's message. final String
getConversationId()
Unique identifier for the conversation being served by the agent. -
-
Constructor Detail
-
ConversationServedByAgentDetails
ConversationServedByAgentDetails(String agentDisplayName, String agentId, AgentMessageSource agentMessageSource, String conversationId)
-
-
Method Detail
-
getAgentDisplayName
final String getAgentDisplayName()
The display name of the agent serving the conversation.
-
getAgentId
final String getAgentId()
Unique identifier string for the agent.
-
getAgentMessageSource
final AgentMessageSource getAgentMessageSource()
Enum indicating the source or tool context of the agent's message.
-
getConversationId
final String getConversationId()
Unique identifier for the conversation being served by the agent.
-
-
-
-