12 lines
280 B
Go
Raw Permalink Normal View History

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