Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TruckDimensions

import type { TruckDimensions } from "https://aws-api.deno.dev/v0.3/services/location.ts?docs=full";

Contains 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.

interface TruckDimensions {
Height?: number | null;
Length?: number | null;
Unit?: DimensionUnit | null;
Width?: number | null;
}

§Properties

§
Height?: number | null
[src]

The height of the truck.

  • For example, 4.5.
§
Length?: number | null
[src]

The length of the truck.

  • For example, 15.5.
§
Unit?: DimensionUnit | null
[src]

Specifies the unit of measurement for the truck dimensions.

Default Value: Meters

§
Width?: number | null
[src]

The width of the truck.

  • For example, 4.5.