com.logicommerce.sdktest.models.order.OrderItemTaxFake 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.order;
import com.logicommerce.sdk.enums.TaxType;
import com.logicommerce.sdk.models.order.OrderItemTax;
public class OrderItemTaxFake implements OrderItemTax {
private double base;
private double taxValue;
private double taxRate;
private TaxType type;
private String code;
@Override
public double getBase() {
return base;
}
@Override
public double getTaxValue() {
return taxValue;
}
@Override
public double getTaxRate() {
return taxRate;
}
@Override
public TaxType getType() {
return type;
}
@Override
public String getCode() {
return code;
}
public void setBase(double base) {
this.base = base;
}
public void setTaxValue(double taxValue) {
this.taxValue = taxValue;
}
public void setTaxRate(double taxRate) {
this.taxRate = taxRate;
}
public void setType(TaxType type) {
this.type = type;
}
public void setCode(String code) {
this.code = code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy