com.salesmanager.shop.model.shipping.ShippingConfiguration 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;
import java.util.ArrayList;
import java.util.List;
public class ShippingConfiguration implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private boolean taxOnShipping = false;
private List boxConfigurations = new ArrayList();
public boolean isTaxOnShipping() {
return taxOnShipping;
}
public void setTaxOnShipping(boolean taxOnShipping) {
this.taxOnShipping = taxOnShipping;
}
public List getBoxConfigurations() {
return boxConfigurations;
}
public void setBoxConfigurations(List boxConfigurations) {
this.boxConfigurations = boxConfigurations;
}
}