structs.go 452 B

123456789101112131415161718192021222324
  1. package pubsub
  2. import "encoding/json"
  3. type Response struct {
  4. Type string `json:"type"`
  5. Data interface{} `json:"data,omitempty"`
  6. Error string `json:"error,omitempty"`
  7. Nonce string `json:"nonce,omitempty"`
  8. }
  9. func (r Response) JSON() []byte {
  10. bytes, _ := json.Marshal(r)
  11. return bytes
  12. }
  13. type DataTopics struct {
  14. Topics []string `json:"topics"`
  15. }
  16. func (d DataTopics) JSON() []byte {
  17. bytes, _ := json.Marshal(d)
  18. return bytes
  19. }