AI-generated Key Takeaways
-
The provided data describes how to represent an adjustment amount for vehicle load in JSON format.
-
The adjustment amount is a string representing a 64-bit integer and is used to modify the vehicle's load during a visit.
-
The
amount
field specifies the quantity the vehicle's load will change during the corresponding visit, and it must be greater than or equal to zero. -
The load adjustment can either add to the load of the vehicle if it is a pickup, or subtract from the load if it is a delivery.
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. |