com.logicommerce.sdktest.models.CartShippingFake Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdktest Show documentation
Show all versions of sdktest Show documentation
Logicommerce SDK Testing tools for Logicommerce plugins.
package com.logicommerce.sdktest.models;
import java.util.List;
import com.logicommerce.sdk.models.CartDiscount;
import com.logicommerce.sdk.models.CartShipping;
public class CartShippingFake implements CartShipping {
private String name;
private String taxCode;
private Double price;
private List discounts;
@Override
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String getTaxCode() {
return taxCode;
}
public void setTaxCode(String taxCode) {
this.taxCode = taxCode;
}
@Override
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
@Override
public List getDiscounts() {
return discounts;
}
public void setDiscounts(List discounts) {
this.discounts = discounts;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy