VehicleExteriorDimensions

data class VehicleExteriorDimensions(    val height: Distance,     val length: Distance,     val width: Distance) : Parcelable

Describes the exterior dimensions of a vehicle.

Parameters

height

The height of a vehicle.

length

The length of a vehicle.

width

The width of a vehicle.

Constructors

Link copied to clipboard
fun VehicleExteriorDimensions(    height: Distance,     length: Distance,     width: Distance)

Properties

Link copied to clipboard
val height: Distance
Link copied to clipboard
val length: Distance
Link copied to clipboard
val width: Distance

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)