Class VehicleStop
Describes a point where a Vehicle stops to perform one or more Task
s.
Implements
Namespace: Google.Maps.FleetEngine.Delivery.V1
Assembly: Google.Maps.FleetEngine.Delivery.V1.dll
Syntax
public sealed class VehicleStop : IMessage<VehicleStop>, IEquatable<VehicleStop>, IDeepCloneable<VehicleStop>, IBufferMessage, IMessage
Constructors
VehicleStop()
Declaration
public VehicleStop()
VehicleStop(VehicleStop)
Declaration
public VehicleStop(VehicleStop other)
Parameters
Type | Name | Description |
---|---|---|
VehicleStop | other |
Properties
PlannedLocation
Required. The location of the stop. Note that the locations in the Task
s
might not exactly match this location, but will be within a short distance
of it. This field won't be populated in the response of a GetTask
call.
Declaration
public LocationInfo PlannedLocation { get; set; }
Property Value
Type | Description |
---|---|
LocationInfo |
State
The state of the VehicleStop
. This field won't be populated in the
response of a GetTask
call.
Declaration
public VehicleStop.Types.State State { get; set; }
Property Value
Type | Description |
---|---|
VehicleStop.Types.State |
Tasks
The list of Task
s to be performed at this stop. This field won't be
populated in the response of a GetTask
call.
Declaration
public RepeatedField<VehicleStop.Types.TaskInfo> Tasks { get; }
Property Value
Type | Description |
---|---|
RepeatedField<VehicleStop.Types.TaskInfo> |