mirror of
https://github.com/logos-messaging/sds-go-bindings.git
synced 2026-01-03 06:33:06 +00:00
15 lines
335 B
Go
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"`
|
|
}
|