VROOM.Vehicle.Step (vroom v0.1.2) View Source

Defines a Vehicle Step object.

The Vehicle.Step struct has the following properties:

  • type: a string (either start, job, pickup, delivery, break or end)
  • id: id of the task to be performed at this step if type value is job, pickup, delivery or break;
  • service_at: hard constraint on service time;
  • service_after: hard constraint on service time lower bound;
  • service_before: hard constraint on service time upper bound;

https://github.com/VROOM-Project/vroom/blob/master/docs/API.md#vehicles

Link to this section Summary

Link to this section Types

Specs

t() :: %VROOM.Vehicle.Step{
  id: integer() | nil,
  service_after: integer() | nil,
  service_at: integer() | nil,
  service_before: integer() | nil,
  type: binary()
}