Class EdiGeoEta
The estimated time of arrival (ETA) is the time when a ship, vehicle, aircraft, cargo, emergency service or person is expected to arrive at a certain place
Inheritance
Namespace: Conizi.Model.Shared.Entities
Assembly: Conizi.Model.dll
Syntax
public class EdiGeoEta : object
Remarks
The ETA should always be used in conjunction with a GPS position EdiGeoPosition.
Properties
DistanceMeasurementUnitCode
Code that describes the unit in which the distance is measured Default kilometers (KMT)
Declaration
public MeasurementUnitCode? DistanceMeasurementUnitCode { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<MeasurementUnitCode> |
DistanceToDestination
The distance to destination
Declaration
public decimal? DistanceToDestination { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Decimal> |
EtaDateAbsolute
ETA (Estimated time of arrival) date component date (e.g. 2019-05-17)
Declaration
public DateTime? EtaDateAbsolute { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<DateTime> |
Remarks
The date component is only required if it is not the current day.
EtaDateTimeAbsolute
ETA (Estimated time of arrival) full date time (e.g. 2019-05-17T13:08:20Z)
Declaration
public DateTime? EtaDateTimeAbsolute { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<DateTime> |
Remarks
The date component is only required if it is not the current day.
EtaTimeAbsolute
ETA (Estimated time of arrival) absolute as time string (e.g. 14:12:33)
Declaration
public string EtaTimeAbsolute { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
If no date component is specified EtaDateAbsolute, the current day applies.
EtaTimePeriodEnd
ETA (Estimated time of arrival) period end as time string (e.g. 16:15:00)
Declaration
public string EtaTimePeriodEnd { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
If no date component is specified EtaDateAbsolute, the current day applies.
EtaTimePeriodStart
ETA (Estimated time of arrival) period start as time string (e.g. 15:30:00)
Declaration
public string EtaTimePeriodStart { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
If no date component is specified EtaDateAbsolute, the current day applies.
Ete
ETE (estimated time enroute, estimated time elapsed) in seconds
Declaration
public int? Ete { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
StopsToDestination
The number of stops EdiTourStop to destination
Declaration
public int? StopsToDestination { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |