Show / Hide Table of Contents

Class EdiTruckTelematics

Telematics data about the truck

Inheritance
System.Object
EdiTruckTelematics
Namespace: Conizi.Model.Shared.Entities
Assembly: Conizi.Model.dll
Syntax
public class EdiTruckTelematics : object

Properties

AdBlueLevel

The current AdBlue level in percent (0-100)

Declaration
public double? AdBlueLevel { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

EngineSpeed

The engine Speed (UpM/RpM)

Declaration
public double? EngineSpeed { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

EngineState

The engine is on

Declaration
public EdiVehicleEngineState? EngineState { get; set; }
Property Value
Type Description
System.Nullable<EdiVehicleEngineState>

FuelLevel

The current Fuel level in percent (0-100)

Declaration
public double? FuelLevel { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

RecordTime

Time the measurement was recorded (Unix UTC Timestamp in milliseconds)

Declaration
public long RecordTime { get; set; }
Property Value
Type Description
System.Int64

Speed

The speed of the vehicle in KM/h

Declaration
public double? Speed { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

TotalAdBlueUsed

The Total AdBlue Used in ML

Declaration
public double? TotalAdBlueUsed { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

TotalDrivenDistance

The Total Driven Distance in meter

Declaration
public double? TotalDrivenDistance { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

TotalFuelConsumption

The Total Fuel Consumption in ML

Declaration
public double? TotalFuelConsumption { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

TotalOperatingTime

The Total Operating Time in seconds

Declaration
public int? TotalOperatingTime { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Weight

The weight of the vehicle in Kg

Declaration
public double? Weight { get; set; }
Property Value
Type Description
System.Nullable<System.Double>
Back to top Generated by DocFX