OBJECT
Message
A type of chat log sent by either an agent or visitor
link GraphQL Schema definition
1 type Message { 2 3 # The channel on which the message is sent. 4 : Channel! 5 6 # The content of the message. 7 : String! 8 9 # The sender of the message. 10 : User! 11 12 # Globally unique identifier 13 : ID! 14 15 # The custom message ID to identify this message. 16 : String 17 18 # Discrete list of answers that visitor can select from. 19 : [String!] 20 21 # The message sender's name when the message is sent. 22 : String! 23 24 # The UNIX timestamp when the message is sent (in milliseconds precision) 25 : Float 26 27 }