Message Object
Description
A message in an order conversation thread.
Declaration
type Message {
content: String
subject: String
created: Date
fromBuyer: Boolean
sender: OrderMessageSender
attachments: [OrderMessageAttachment!]
}
Fields
| Name | Type | Description |
|---|---|---|
content | String | Message content text. |
subject | String | Message subject line. |
created | Date | Date when the message was created. |
fromBuyer | Boolean | Whether the message was sent by the buyer. |
sender | OrderMessageSender | Sender information. |
attachments | [OrderMessageAttachment!] | Attachments included with the message. |