feat: add msglib receive adapter

This commit is contained in:
zhaoyilun
2026-07-10 08:59:36 +08:00
parent 44d27879f6
commit 0820717767
8 changed files with 295 additions and 13 deletions

View File

@@ -22,6 +22,16 @@ type Message struct {
Subject string
ReceiptID string
Read bool
Source string
RawRef string
Attachments []MessageAttachment
}
type MessageAttachment struct {
FileID string
FileName string
SizeBytes *int64
DownloadRef string
}
type ReceiveMessagesQuery struct {