sds-go-bindings/sds/types.go
2026-01-06 01:52:37 +07:00

15 lines
335 B
Go

package sds
type MessageID string
type HistoryEntry struct {
MessageID MessageID `json:"messageId"`
RetrievalHint []byte `json:"retrievalHint"`
}
type UnwrappedMessage struct {
Message *[]byte `json:"message"`
MissingDeps *[]HistoryEntry `json:"missingDeps"`
ChannelId *string `json:"channelId"`
}