OBJECT

Agent

A website agent that serves visitor's chat.

link GraphQL Schema definition

1type Agent implements User {
2
3# The display name of the agent.
4display_name: String
5
6# The email of the agent.
7email: String!
8
9# Globally unique identifier.
10id: ID!
11
12# The full name of the agent.
13name: String!
14
15# The raw id of the agent.
16raw_id: ID!
17
18# The status of the agent to indicate its availability.
19status: AGENT_STATUS!
20
21}