Current section
Files
Jump to
Current section
Files
include/dict/delivery.hrl
-ifndef(DELIVERY_HRL).
-define(DELIVERY_HRL, true).
-include("transport.hrl").
-include("material.hrl").
-include("location.hrl").
-record('Delivery', { id = [] :: [] | binary(),
name = [] :: [] | binary(),
transport = [] :: [] | #'Transport'{},
material = [] :: [] | #'Material'{},
source = [] :: [] | #'Loc'{},
destination = [] :: [] | #'Loc'{},
type = [] :: transportType() }).
-endif.