overflow_commons_go/modules/commons/model/PublishMessage.go

12 lines
280 B
Go
Raw Normal View History

2017-11-08 09:50:44 +00:00
package model
type PublishMessage struct {
2017-12-01 06:04:31 +00:00
Targets []string `json:"targets,omitempty"`
Message *PublishMessageBody `json:"message,omitempty"`
2017-11-08 09:50:44 +00:00
}
type PublishMessageBody struct {
2017-12-01 06:04:31 +00:00
Method string `json:"method,omitempty"`
Params []string `json:"params,omitempty"`
}