type AutoGenerated struct {
Ts int `json:"ts"`
Tem float64 `json:"tem"`
Hum float64 `json:"hum"`
PM11 int `json:"PM1.1"`
PM25 int `json:"PM2.5"`
PM10 int `json:"PM10."`
P03 int `json:"P0.3"`
P05 int `json:"P0.5"`
P11 int `json:"P1.1"`
P25 int `json:"P2.5"`
P51 int `json:"P5.1"`
P10 int `json:"P10."`
}
Where as you can see the PM1.0 , P1.0 and P5.0 get a wrong name
Hi. Thanks for the tool, this is a great thing to avoid typos and reduce efforts. I found an issue when using it, here the example:
JSON:
Produces:
Where as you can see the PM1.0 , P1.0 and P5.0 get a wrong name
Regards,