send unicast & broadcast.

This commit is contained in:
Miroslav Šedivý
2021-01-28 15:56:50 +01:00
parent c27658d54c
commit 8e13a60677
4 changed files with 69 additions and 0 deletions

View File

@ -167,3 +167,22 @@ type BroadcastStatus struct {
IsActive bool `json:"is_active"`
URL string `json:"url,omitempty"`
}
/////////////////////////////
// Send (opaque comunication channel)
/////////////////////////////
type SendUnicast struct {
Event string `json:"event,omitempty"`
Sender string `json:"sender"`
Receiver string `json:"receiver"`
Subject string `json:"subject"`
Body string `json:"body"`
}
type SendBroadcast struct {
Event string `json:"event,omitempty"`
Sender string `json:"sender"`
Subject string `json:"subject"`
Body string `json:"body"`
}