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

It's similar to a Job.

The ShipmentStep has the following properties:

  • description: a string describing this step;
  • location: coordinates list;
  • location_index: index of relevant row and column in custom matrix;
  • service: task service duration (defaults to 0);
  • time_windows: an list of time_window structs describing valid slots for task service start

Link to this section Summary

Link to this section Types

Specs

coordinates() :: [float()]

Specs

t() :: %VROOM.Shipment.Step{
  description: binary() | nil,
  id: integer(),
  location: coordinates() | nil,
  location_index: integer() | nil,
  service: integer() | nil,
  time_windows: [integer()] | nil
}