com.salesmanager.shop.model.shipping.BoxConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.shipping;
import java.io.Serializable;
public class BoxConfiguration implements Serializable {
private String code;
private double boxWidth = 0;
private double boxHeight = 0;
private double boxLength = 0;
private double boxWeight = 0;
private double maxWeight = 0;
}