OBJECT

VisitorChannel

A visitor to agent chat channel.

link GraphQL Schema definition

1type VisitorChannel implements Channel {
2
3# The list of agents participating in the channel.
4agents(after: String, first: Int, before: String, last: Int): AgentConnection
5
6# The city of the visitor.
7city: String
8
9# The country of the visitor.
10country: String
11
12# The department which the visitor has been served by.
13department: Department
14
15# The device type of the visitor.
16device_type: String
17
18# Globally unique identifier.
19id: ID!
20
21# The IP address of the visitor.
22ip: String
23
24# The list of chat logs of the channel.
25logs(after: String, first: Int, before: String, last: Int): ChatLogConnection
26
27# The platform of the visitor.
28platform: String
29
30# The raw id of the visitor channel.
31raw_id: ID!
32
33# The region of the visitor.
34region: String
35
36# The state of the channel.
37state: CHANNEL_STATE!
38
39# The list of tags attached to the channel.
40tags: [String!]!
41
42# The user agent of the visitor.
43user_agent: String
44
45# The visitor participating in the channel.
46visitor: Visitor!
47
48# The path of web pages where the visitor has been to.
49web_paths(after: String, first: Int, before: String, last: Int): WebPathConnection
50
51}