sds-go-bindings/sds/types.go

15 lines
335 B
Go
Raw Normal View History

package sds
type MessageID string
2025-08-18 19:44:00 +05:30
type HistoryEntry struct {
MessageID MessageID `json:"messageId"`
RetrievalHint []byte `json:"retrievalHint"`
}
type UnwrappedMessage struct {
2025-08-18 19:44:00 +05:30
Message *[]byte `json:"message"`
MissingDeps *[]HistoryEntry `json:"missingDeps"`
ChannelId *string `json:"channelId"`
}