stream.go 204 B

123456789
  1. package dtos
  2. import "encoding/json"
  3. type StreamMessage struct {
  4. Stream string `json:"stream"`
  5. Metric string `json:"metric"`
  6. Datapoints [][]json.Number `json:"Datapoints"`
  7. }