Page Summary
-
The provided content describes a JSON structure used to define the amount by which a vehicle's load varies during a visit.
-
The JSON representation uses an
amountfield, formatted as a string representing an int64 integer. -
The
amountfield indicates how much to add to the vehicle load for a pickup, or subtract for a delivery. -
Users must select a load unit when dealing with decimal values, since the field is defined as integer.
When performing a visit, a predefined amount may be added to the vehicle load if it's a pickup, or subtracted if it's a delivery. This message defines such amount. See loadDemands.
| JSON representation |
|---|
{ "amount": string } |
| Fields | |
|---|---|
amount |
The amount by which the load of the vehicle performing the corresponding visit will vary. Since it is an integer, users are advised to choose an appropriate unit to avoid loss of precision. Must be ≥ 0. |