1
0
Fork 0
mirror of https://github.com/Luzifer/sii.git synced 2024-10-18 05:14:19 +00:00

Fix: TotalTransportedWeight seems to be float

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-01-01 01:26:51 +01:00
parent ab39609f45
commit bbbce2b2a3
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -5,10 +5,10 @@ func init() {
}
type TrailerUtilizationLog struct {
Entries []Ptr `sii:"entries"` // Needs verification
TotalDrivenDistanceKM int64 `sii:"total_driven_distance_km"`
TotalTransportedCargoes int64 `sii:"total_transported_cargoes"`
TotalTransportedWeight int64 `sii:"total_transported_weight"`
Entries []Ptr `sii:"entries"` // Needs verification
TotalDrivenDistanceKM int64 `sii:"total_driven_distance_km"`
TotalTransportedCargoes int64 `sii:"total_transported_cargoes"`
TotalTransportedWeight float32 `sii:"total_transported_weight"`
blockName string
}