OBJECT
Message
Represents single message in thread.
link GraphQL Schema definition
- type Message implements Node {
- # Identifier of the message's sender.
- String! :
- # Identifier of the message's recipient.
- String! :
- # Content of the message.
- String :
- # Current status of the message.
- MessageStatus! :
- # Direction of the message.
- MessageDirection! :
- # Message failure description.
- MessageError :
- # Identifies the date and time when the message was created.
- DateTime! :
- # Identifier of the update that message was part of.
- ID :
- # List of attachments in the message.
- MessageMedia!]! : [
- # Globally unique identifier.
- ID! :
- }