Package zendesk.android.events
Class ConversationServedByAgentDetails
-
- All Implemented Interfaces:
public final class ConversationServedByAgentDetailsRepresents details about a conversation served by an agent within the Zendesk API context.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringagentDisplayNameprivate final StringagentIdprivate final AgentMessageSourceagentMessageSourceprivate final StringconversationId
-
Constructor Summary
Constructors Constructor Description ConversationServedByAgentDetails(String agentDisplayName, String agentId, AgentMessageSource agentMessageSource, String conversationId)
-
Method Summary
Modifier and Type Method Description final StringgetAgentDisplayName()The display name of the agent serving the conversation. final StringgetAgentId()Unique identifier string for the agent. final AgentMessageSourcegetAgentMessageSource()Enum indicating the source or tool context of the agent's message. final StringgetConversationId()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.
-
-
-
-