Values.TruckDimensionsSourceContains details about the truck dimensions in the unit of measurement that you specify. Used to filter out roads that can't support or allow the specified dimensions for requests that specify TravelMode as Truck.
type nonrec t = {length : TruckDimensionsLengthDouble.t option;The length of the truck. For example, 15.5. For routes calculated with a HERE resource, this value must be between 0 and 300 meters.
*)height : TruckDimensionsHeightDouble.t option;The height of the truck. For example, 4.5. For routes calculated with a HERE resource, this value must be between 0 and 50 meters.
*)width : TruckDimensionsWidthDouble.t option;The width of the truck. For example, 4.5. For routes calculated with a HERE resource, this value must be between 0 and 50 meters.
*)unit : DimensionUnit.t option;Specifies the unit of measurement for the truck dimensions. Default Value: Meters
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of TruckDimensionsLengthDouble.t | `Enum of string ])
list ]