Restrictions

@Serializable
data class Restrictions(val maxHeight: Double? = null, val maxWidth: Double? = null, val maxWeight: Double? = null, val maxLength: Double? = null)

Constructors

Link copied to clipboard
constructor(maxHeight: Double? = null, maxWidth: Double? = null, maxWeight: Double? = null, maxLength: Double? = null)

Properties

Link copied to clipboard
@SerialName(value = "max_height")
val maxHeight: Double? = null
Link copied to clipboard
@SerialName(value = "max_length")
val maxLength: Double? = null
Link copied to clipboard
@SerialName(value = "max_weight")
val maxWeight: Double? = null
Link copied to clipboard
@SerialName(value = "max_width")
val maxWidth: Double? = null