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