OBJECT

Message

A type of chat log sent by either an agent or visitor

link GraphQL Schema definition

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