mirror of
https://github.com/Luzifer/sii.git
synced 2024-12-21 00:21:15 +00:00
Fix: TotalTransportedWeight seems to be float
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
ab39609f45
commit
bbbce2b2a3
1 changed files with 4 additions and 4 deletions
|
@ -5,10 +5,10 @@ func init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
type TrailerUtilizationLog struct {
|
type TrailerUtilizationLog struct {
|
||||||
Entries []Ptr `sii:"entries"` // Needs verification
|
Entries []Ptr `sii:"entries"` // Needs verification
|
||||||
TotalDrivenDistanceKM int64 `sii:"total_driven_distance_km"`
|
TotalDrivenDistanceKM int64 `sii:"total_driven_distance_km"`
|
||||||
TotalTransportedCargoes int64 `sii:"total_transported_cargoes"`
|
TotalTransportedCargoes int64 `sii:"total_transported_cargoes"`
|
||||||
TotalTransportedWeight int64 `sii:"total_transported_weight"`
|
TotalTransportedWeight float32 `sii:"total_transported_weight"`
|
||||||
|
|
||||||
blockName string
|
blockName string
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue