![JAR search and dependency download from the Maven repository](/logo.png)
com.ebay.sell.inventory.inventoryitems.models.Dimension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebay-sdk Show documentation
Show all versions of ebay-sdk Show documentation
Java SDK for eBay REST APIs
package com.ebay.sell.inventory.inventoryitems.models;
import java.math.BigDecimal;
public class Dimension {
private BigDecimal height;
private BigDecimal length;
private BigDecimal width;
private String unit;
public BigDecimal getHeight() {
return height;
}
public void setHeight(BigDecimal height) {
this.height = height;
}
public BigDecimal getLength() {
return length;
}
public void setLength(BigDecimal length) {
this.length = length;
}
public BigDecimal getWidth() {
return width;
}
public void setWidth(BigDecimal width) {
this.width = width;
}
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy