My memo docs
{
"message_reference": {
"type": 1,
"channel_id": 111111111111111111,
"guild_id": 111111111111111111,
"message_id": 111111111111111111
}
}| name | value | description |
|---|---|---|
| DEFAULT | 0 | Traditional reference(reply) |
| FORWARD | 1 | Forward message |
message_snapshots is data of forward target data. (Message Object + guild_id)
{
"author": {
"id": 123456789012345678,
},
"message_reference": {
"type": 1, // FORWARD
"message_id": "123456789012345678",
"channel_id": "123456789012345678",
"guild_id": "123456789012345678"
},
"message_snapshots": [
{
"content": "hello world",
"embeds": [],
"attachments": [],
"guild_id": 123456789012345678
}
]
}