/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.commerceruntime.commerce; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; import com.mozu.api.contracts.core.Measurement; /** * Dimensions of the packaged product. */ @JsonIgnoreProperties(ignoreUnknown = true) public class PackageMeasurements implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Height of the package in imperial units of feet and inches. */ protected Measurement height; public Measurement getHeight() { return this.height; } public void setHeight(Measurement height) { this.height = height; } /** * Length of the package in imperial units of feet and inches. */ protected Measurement length; public Measurement getLength() { return this.length; } public void setLength(Measurement length) { this.length = length; } /** * Weight of the package in imperial units of pounds and ounces. */ protected Measurement weight; public Measurement getWeight() { return this.weight; } public void setWeight(Measurement weight) { this.weight = weight; } /** * Width of the package in imperial units of feet and inches. */ protected Measurement width; public Measurement getWidth() { return this.width; } public void setWidth(Measurement width) { this.width = width; } }