mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-04 11:07:40 +08:00
28 lines
496 B
Go
28 lines
496 B
Go
package message
|
|
|
|
type (
|
|
GuildChannelMessage struct {
|
|
Id uint64
|
|
InternalId uint64
|
|
GuildId uint64
|
|
ChannelId uint64
|
|
Time int64
|
|
Sender *GuildSender
|
|
Elements []IMessageElement
|
|
Reactions []*GuildMessageEmojiReaction // only available for pulling messages
|
|
}
|
|
|
|
GuildMessageEmojiReaction struct {
|
|
EmojiId string
|
|
EmojiType uint64
|
|
Face *FaceElement
|
|
Count int32
|
|
Clicked bool
|
|
}
|
|
|
|
GuildSender struct {
|
|
TinyId uint64
|
|
Nickname string
|
|
}
|
|
)
|