send: body any type.

This commit is contained in:
Miroslav Šedivý 2021-01-28 17:11:23 +01:00
parent 8e13a60677
commit ced0a89bbe

View File

@ -177,12 +177,12 @@ type SendUnicast struct {
Sender string `json:"sender"`
Receiver string `json:"receiver"`
Subject string `json:"subject"`
Body string `json:"body"`
Body interface{} `json:"body"`
}
type SendBroadcast struct {
Event string `json:"event,omitempty"`
Sender string `json:"sender"`
Subject string `json:"subject"`
Body string `json:"body"`
Body interface{} `json:"body"`
}