event.go 310 B

1234567891011
  1. package response
  2. type Event struct {
  3. Id int `json:"id"`
  4. GatewayName string `json:"gatewayName"`
  5. EventType string `json:"eventType"`
  6. EventCode string `json:"eventCode"`
  7. StartTime string `json:"startTime"`
  8. HandleTime string `json:"handleTime"`
  9. PictureUrl string `json:"pictureUrl"`
  10. }