DimensionalProperties

@JsonClass(generateAdapter = true)
data class DimensionalProperties(    @Json(name = "width") val width: Int,     @Json(name = "weight") val weight: Int,     @Json(name = "axleWeight") val axleWeight: Int,     @Json(name = "height") val height: Int,     @Json(name = "length") val length: Int)

Constructors

Link copied to clipboard
fun DimensionalProperties(    @Json(name = "width") width: Int,     @Json(name = "weight") weight: Int,     @Json(name = "axleWeight") axleWeight: Int,     @Json(name = "height") height: Int,     @Json(name = "length") length: Int)

Properties

Link copied to clipboard
val axleWeight: Int
Link copied to clipboard
val height: Int
Link copied to clipboard
val length: Int
Link copied to clipboard
val weight: Int
Link copied to clipboard
val width: Int